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-读取属性文件的主要内容,如果未能解决你的问题,请参考以下文章

用Java读取属性文件

nzSQLException 读取超时错误

如何在 Java 中读取属性文件? [复制]

每当我尝试从 Fragment java 文件中更改片段的某些属性时,应用程序就会崩溃

在Java中读取/加载jks cert文件将返回空别名

java 读取Properities 文件