读取Properties键值对

Posted 1582277142

tags:

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

public class CommonFunc {

/**
* 取properties文件中的键值对
*/
public static String getProperties(String param) throws Exception {

Properties prop = new Properties();
InputStream in = Object.class.getResourceAsStream("/jdbc.properties");
try {
prop.load(in);
return prop.getProperty(param).trim();
} catch (IOException e) {
e.printStackTrace();
}
return "";
}

}

 

 

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

属性文件操作之Properties与ResourceBundle

通过Shell脚本读取properties文件中的参数

java properties类读取配置文件

Properties持久化键值对

Java读取Properties配置文件

ResourceBundle类读取properties文件