Java解析properties

来源:互联网 发布:哪种照相软件好 编辑:程序博客网 时间:2024/06/14 10:06
        /**
 * 读取Properties文件的单独类
 * @param filePath 文件路径         
 * @return properties 文件类
 */
public Properties readProperty(String filePath) {
Properties prop = new Properties();
Resource file = null;
InputStream propertiesInputStream = null;
try {
file  = new ClassPathResource(filePath);
propertiesInputStream = file.getInputStream(); 
prop.load(propertiesInputStream);
} catch (Exception e) {
System.err.println("读取Properties文件失败!" + e);
} finally {
try {
propertiesInputStream.close();
} catch (IOException e) {
System.err.println("关闭流失败!" + e);
}
}
return prop;
}
            //在另一个类中读取配置
           Properties p = new ConfigFileUtil().readProperty("config.properties");
        
           //获取配置文件中key为name ,sex的值

 String name= p.getProperty("name");获取内容
 String sex= p.getProperty("sex");获取内容
1 0
原创粉丝点击