PropertiesUtils(普遍做法)
Posted lingtiaoti
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PropertiesUtils(普遍做法)相关的知识,希望对你有一定的参考价值。
public class PropertiesUtil{
private static Properties properties;
static{
InputStream in = null;
try{
in = PropertiesUtil.class.getClassLoader().getResourceAsStream("jdbc.properties");
properties = new Properties();
properties.load(in);
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(in != null){
in.close();
}
}catch(Exception e){
e.printStackTrace();
}
}
}
public static Properties getPropertis(){
return properties;
}
}
以上是关于PropertiesUtils(普遍做法)的主要内容,如果未能解决你的问题,请参考以下文章