java 中如何写数据库连接字符窜的properties配置文件
发布网友
发布时间:2022-04-23 11:49
我来回答
共3个回答
热心网友
时间:2022-04-09 03:38
单独定义一个文件:DBConfig.properties
driver=com.microsoft.jdbc.sqlserver.SQLServerDriver
url=jdbc:microsoft:sqlserver://localhost:1433;databasename=dbName
user=sa
password=
调用这些信息连接来数据库.一般是在类里.
ResourceBundle bundle = ResourceBundle.getBundle("DBConfig");
String driver = bundle.getString("driver");
String url = bundle.getString("url");
String user = bundle.getString("user");
String password = bundle.getString("password");
try {
Class.forName(driver);
conn = DriverManager.getConnection(url, user, password);
} catch (ClassNotFoundException e) {
System.out.println(e.getMessage());
} catch (SQLException e) {
System.out.println(e.getMessage());
}
验证用户登陆其实就是一个查询方法,根据页面取出的内容.做个equals()判断就可以了.
热心网友
时间:2022-04-09 04:56
其实没啥用 等你学数据连接池的时候这个玩意就用不上了
public class Test extends Properties{
InputStream is= getClass().getResourceAsStream("aaa.properties");
//创建一个流来读取文件名是aaa.propert,
load(is); 加载流;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public static void main(String[] args){
System.out.println(new Test().getProperty("name")); //读取该文件中属性为"name"的值
}
}
热心网友
时间:2022-04-09 06:31
是这个东西吗?
jdbc.username=root
jdbc.password=root
jdbc.url=jdbc:mysql://localhost:3306/webtest
jdbc.driver=com.mysql.jdbc.Driver