读取properties文件

Posted 咬咬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读取properties文件相关的知识,希望对你有一定的参考价值。

读取properties文件

InputStream in = getClass().getClassLoader().getResourceAsStream("jdbc.properties");
        Properties properties = new Properties();
        properties.load(in);
        driverClass = properties.getProperty("driver");
        jdbcURL = properties.getProperty("url");
        user = properties.getProperty("user");
        password = properties.getProperty("password");

 

peoperties配置文件的格式

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://127.0.0.1:3306/test
user=root
password=123

  

以上是关于读取properties文件的主要内容,如果未能解决你的问题,请参考以下文章

Spring用代码来读取properties文件

Java 代码读取properties文件

ResourceBundle类读取properties文件

Spring用代码来读取properties文件

Java读取properties配置文件

java读取资源文件(Properties)