標籤:io os 使用 ar java 檔案 資料 sp c
在資料庫配置中,經常使用設定檔來設定資料庫
1:資料設定檔
# databasetype : 資料庫的類別
# driverclass : 資料庫驅動類
# databaseurl : 資料庫連接URL
# usejndi : 是否使用JNDI調用資料庫,true 開啟,其餘為預設值關閉
# databasejndi : 如果使用JNDI調用,則配置調用名稱
# debug : 日誌工具,log4j,其餘使用預設的Console
# ================ SQLite ================ #
databasetype=SQLite
driverclass=org.sqlite.JDBC
databaseurl=jdbc\:sqlite\:SQLiteDB\\test.db
usejndi=false
databasejndi=test
debug=log4j
# ================ MySQL ================ #
#databasetype=MySQL
#driverclass=com.mysql.jdbc.Driver
#databaseurl=jdbc:mysql://127.0.0.1:3306/test?user=root&password=123456&useUnicode=true&characterEncoding=GB2312
#usejndi=false
#databasejndi=test
#debug=console
2:讀取資料庫設定檔
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
/**
* 讀取properties設定檔的toolKit
*/
public class PropertiesHelper {
public static String getProperty(String fileName, String key) {
String value = "";
InputStream in = null;
try {
in = PropertiesHelper.class.getResourceAsStream("/" + fileName);
Properties properties = new Properties();
properties.load(in);
value = properties.getProperty(key);
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return value;
}
}
java datasource.properties 資料庫相關資訊的配置