javaweb:jdbc配置⽂件jdbc配置⽂件
1.jdbc配置⽂件是什么?
配置过程:
学英文的基础建⽴⽂件:dp.properties
sql.jdbc.Driver
url=jdbc:mysql://localhost:3306/new_schema
password=your-password
username=root
使⽤配置⽂件:
放在jdbc⼯具类中
Properties properties=new Properties();//创建⽂件对象
properties.load(new FileInputStream(“D:\javac\projects\jdbc学习\src\dp.properties”));// 读取⽂件
再赋值
properties是什么文件
Property(“driverClassName”);
Property("url");
Property("password");
Property("username");
import FileInputStream ;
jvm如何调优面试如果回答import IOException ;
import Connection;
import DriverManager;
import SQLException;
import Properties;
public class TYBU {
private static final String driverClassName;
private static final String url;
private static final String password;
private static final String usernane;
static{
Properties properties=new Properties();
怎么把字母转化成ascii码try{
properties.load(new FileInputStream("D:\\javac\\projects\\jdbc学习\\src\\dp.properties"));
}catch(IOException e){
e.printStackTrace();
}
Property("driverClassName");
Property("driverClassName");
Property("url");
Property("password");
Property("username");
//url="jdbc:mysql://localhost:3306/new_schema";
//driverClassName="sql.jdbc.Driver";
/
/password="your-password";
//usernane="root";
}
public static void loadDriver()throws ClassNotFoundException {
try{
Class.forName(driverClassName);
}catch(ClassNotFoundException e){
e.printStackTrace();
}
}
public static Connection getConnection(){安卓修改rpyc文件
Connection conn=null;
try{
loadDriver();
asp代码混淆解密
conn= Connection(url,usernane,password); }catch(ClassNotFoundException | SQLException e){
e.printStackTrace();
}
return conn;
}}
结果:
配置成功
在测试运⾏了

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。