配置文件的读取

Posted chichung

tags:

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

(1)配置文件放在项目的根目录下

Properties properties = new Properties();
InputStream is = new FileInputStream("config.properties");

// 导入输入流
properties.load(is);

// 读取
driverClass = properties.getProperty("driverClass");
url = properties.getProperty("url");
username = properties.getProperty("username");
password = properties.getProperty("password");

 

(2)配置文件放在src目录下

Properties properties = new Properties();
InputStream is = JDBCutils.class.getClassLoader().getResourceAsStream("config.properties");

// 导入输入流
properties.load(is);

// 读取
driverClass = properties.getProperty("driverClass");
url = properties.getProperty("url");
username = properties.getProperty("username");
password = properties.getProperty("password");

 

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

VSCode自定义代码片段11——vue路由的配置

VSCode自定义代码片段11——vue路由的配置

VS Code配置markdown代码片段

VS Code配置markdown代码片段

VS Code配置snippets代码片段快速生成html模板,提高前端编写效率

如何为 XSLT 代码片段配置 CruiseControl 的 C# 版本?