浏览 1346 次
锁定老帖子 主题:JAVA properties文件
精华帖 (0) :: 良好帖 (0) :: 新手帖 (1) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2012-04-25
import java.io.BufferedReader; import java.io.FileReader; import java.util.Properties; public final class Test { private static final Properties apProp__; // 单例模式 private Test(){} // 静态初始化块 static{ String propertiesPath = "c://test.properties"; apProp__ = new Properties(); BufferedReader br = null; try { br = new BufferedReader(new FileReader(propertiesPath)); apProp__.load(br); } catch (Exception e) { e.printStackTrace(System.err); } finally { if (br != null) { try { br.close(); } catch (Exception ex) { } } } } public String getProperty(String key){ return apProp__.getProperty(key); } } test.properties文件内容: path = c://test.txt 这样其他类如果想用c://test.txt这个路径的话,可以调用Test.getProperty("path")就可以了 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |