Properyies文件的读取

Posted 菜鸟东东

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Properyies文件的读取相关的知识,希望对你有一定的参考价值。

当我们使用Properyies存储数据的时候是以键值对形式的,可以存储到Map数据中,我们就可以用前面的key值来获取后面的value

public Map<String,String> getProperyies(){
        Properties properties = new Properties();
        Map<String, String> stringStringHashMap = new HashMap<>();
        InputStream resourceAsStream = getClass().getResourceAsStream("type.peoperyies");
        try {
            properties.load(resourceAsStream);
            Enumeration<?> enumeration = properties.propertyNames();
            while(enumeration.hasMoreElements()){
                String o = (String) enumeration.nextElement();
                String property = properties.getProperty(o);
                stringStringHashMap.put(o,property);
            }

        } catch (IOException e) {
            e.printStackTrace();
        }
          return stringStringHashMap;
    }

这就是Properyies文件的读取!小伙伴赶快试一试吧!

以上是关于Properyies文件的读取的主要内容,如果未能解决你的问题,请参考以下文章

nzSQLException 读取超时错误

OpenGL、GLSL 片段着色器无法读取 Sampler2D 纹理

GLSL:无法从 FBO 读取纹理并使用片段着色器渲染到另一个 FBO

Windows上无法读取的文件属性

Android kotlin:无法读取类文件

从 Zip 文件中的文件中读取内容