java 读取properties配置文件代码如下
Posted 古月今犹在
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 读取properties配置文件代码如下相关的知识,希望对你有一定的参考价值。
java 读取properties配置文件代码如下:
String path = System.getProperty("user.dir") + "\\\\properties\\\\config.properties";
Properties pro = new Properties();
FileInputStream in = new FileInputStream(path);
pro.load(in);
System.out.println(pro.getProperty("driverPath"));
System.out.println(pro.getProperty("username"));
System.out.println(pro.getProperty("password"));
System.out.println(pro.getProperty("driver"));
System.out.println(pro.getProperty("url"));
System.out.println(pro.getProperty("user"));
System.out.println(pro.getProperty("mysql_password"));
in.close();
/// 保存属性到b.properties文件
FileOutputStream oFile = new FileOutputStream(path, false);// false表示覆盖原内容
pro.setProperty("url", "ssssssssssss");
pro.store(oFile, "The New properties file");
oFile.close();
以上是关于java 读取properties配置文件代码如下的主要内容,如果未能解决你的问题,请参考以下文章
Java 读取application.properties配置文件中配置