读取配置文件中的值

Posted

tags:

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

/**
* 加载配置文件
* @author
*
*/
public class ConfigUtil {
//实例属性(对象属性)
private static Properties ps = new Properties();

static{
/*
* 在加载类的同时,告诉类加载器,将此文件加载到内存
*/
InputStream in = ConfigUtil.class.getClassLoader().getResourceAsStream("db.properties");
try {
ps.load(in);
} catch (IOException e) {
e.printStackTrace();
}
}
/**
* 根据key获取文件当中的value
*
*/
public static String getValue(String key){
return ps.getProperty(key);
}

public static void main(String[] args) {

}
}

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

读取yml配置文件中的值

spring取配置文件的值

web.xml中如何读取properties配置文件中的值?

java web项目 web.xml中如何读取properties配置文件中的值?

Springboot框架中如何读取位于resource资源中的properties配置文件,并将配置文件中的键对应的值赋值到目标bean中?

PropertyPlaceholderConfigurer读取配置文件