配置jdbc資料庫連線檔案(db.properties)
/**
*propertie檔案編寫(鍵值對)
*
*/
driver=com.mysql.jdbc.Driver
URL=jdbc\:mysql\://localhost\:3306/menu
user=root
password=123456
/**
*工具類呼叫properties檔案,配置資料庫的連線
*
*/
public class JDBC_Util {
private static String driver=null;
private static String url=null;
private static String user = null;
private static String password=null;
static{ //靜態塊
ResourceBundle bundle=ResourceBundle.getBundle("db"); //基於類讀取屬性檔案:該方法將屬性檔案當作類來處理,屬性檔案放在包中,使用屬性檔案的全限定性而非路徑來指代檔案
driver = bundle.getString("driver");
url = bundle.getString("URL");
user = bundle.getString("user");
password = bundle.getString("password");
}
public static Connection getConn(){ //測試
try {
Class.forName(driver);
conn = DriverManager.getConnection(url, user, password);
} catch (Exception e) {
e.printStackTrace();
}
}
}
(java初學者,本部落格只為記錄java學習中的點點總結,非教程資料)