java-读取属性文件
Posted 刨根问底_liang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java-读取属性文件相关的知识,希望对你有一定的参考价值。
Property类:
public static Properties loadLocalProperties(String fileName) { Properties property = new Properties(); try { String path = Thread.currentThread().getContextClassLoader().getResource("").getPath(); InputStream in = new BufferedInputStream(new FileInputStream(path + "/" + fileName)); property.load(in); } catch (Exception e) { e.printStackTrace(); } return property; }
ResourceBundle类:
public static ResourceBundle loadLocalProperties2(String fileName) { return ResourceBundle.getBundle(fileName, Locale.getDefault()); }
以上是关于java-读取属性文件的主要内容,如果未能解决你的问题,请参考以下文章