properties文件介绍
后缀properties的文件是一种属性文件。这种文件以key=value格式存储内容。Java中可以使用Properties工具类来读取这个文件。
项目中会将一些配置信息放到properties文件中,所以properties文件经常作为配置文件来使用。
Properties工具类
Properties工具类,位于java.util包中,该工具类继承自Hashtable<Object,Object>。通过Properties工具类可以读取.properties类型的配置文件。
Properties工具类中常用方法
load(InputStream is):通过给定的输入流对象读取properties文件并解析
getProperty(String key):根据key获取对应的value
- 如果properties文件中含有中文那么需要对idea进行设置。
/**
* 读取properties配置文件的测试类
*/
public class PropertiesTest {
public static void main(String[] args) throws IOException {
/*优化获取数据库连接
将连接数据库时所需要的信息存放到properties文件中,可以解决硬编码的问题。
*/
//实例化Properties对象
Properties prop = new Properties();
//获取读取properties文件的输入流对象
InputStream is =PropertiesTest.class.getClassLoader().getResourceAsStream("test.properties");
//通过给定的输入流对象读取properties文件并解析。
prop.load(is);
//获取properties文件中的内容
String value1 =prop.getProperty("key1");
String value2 =prop.getProperty("key2");
String value3 =prop.getProperty("key3");
System.out.println(value1+" "+value2+" "+value3);
}
}
#连接Mysql数据库的URL
url=jdbc:mysql://localhost:3306/itbz
#连接数据库的用户名
username=root
#连接数据库的密码
pwd=root
#数据库驱动名称
driver=com.mysql.cj.jdbc.Driver
/**
* 优化获取数据库连接
*/
public class JdbcTest2 {
public static void main(String[] args) throws IOException, ClassNotFoundException,SQLException {
//实例化Properties对象
Properties prop = new Properties();
//获取读取properties文件的字节输入流对象
InputStream is =JdbcTest2.class.getClassLoader().getResourceAsStream("jdbc.properties");
//读取properties文件并解析
prop.load(is);
//获取连接数据库的url
String url = prop.getProperty("url");
//获取连接数据库的用户名
String name = prop.getProperty("username");
//获取连接数据库的密码
String pwd = prop.getProperty("pwd");
//获取数据库驱动全名
String drivername = prop.getProperty("driver");
//加载并注册驱动
Class.forName(drivername);
//通过驱动管理器对象获取连接对象
Connection connection =DriverManager.getConnection(url, name, pwd);
System.out.println(connection);
}
}
标签:文件,properties,JAVA,进阶,数据库,prop,---,Properties,String
From: https://www.cnblogs.com/e-link/p/17065517.html