黑马程序员技术交流社区

标题: 【上海校区】读取resources目录下properties文件的三种方式 [打印本页]

作者: 阿莱    时间: 2019-4-15 11:55
标题: 【上海校区】读取resources目录下properties文件的三种方式
读取resources目录下properties文件的三种方式



在开发过程中常常会需要读取resources目录下的配置文件,大部分是框架帮我们自动读取,如果我们手动读取该如何读取呢?


以下是个人总结的读取properties文件的三种方式:




准备工作:


   
[XML] 纯文本查看 复制代码
username=张无忌
age=18
position=明教第34代教主
education=武当大学太极训练班
address=光明顶

[XML] 纯文本查看 复制代码
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>RELEASE</version>
        </dependency>
        <!--IOC相关依赖-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.0.6.RELEASE</version>
        </dependency>
    </dependencies>


读取方式一:

基于InputStream读取配置文件
[Java] 纯文本查看 复制代码
/**
* 基于InputStream读取配置文件
*/
public class PropertiesTest1 {

    private InputStream is;

    @Test
    public void proRead(){

        try {
            //创建Properties对象
            Properties pro = new Properties();

            is = PropertiesTest1.class.getResourceAsStream("/data.properties");
            //处理中文乱码


            pro.load(is);

            Set<Map.Entry<Object, Object>> entries = pro.entrySet();
            for (Map.Entry<Object, Object> entry : entries) {

                String value =(String)entry.getValue();
                value = URLEncoder.encode(value, "ISO-8859-1");
                value = URLDecoder.decode(value, "GBK");

                System.out.println(entry.getKey()+"------"+value);
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}


读取方式二:

通过Spring中的PropertiesLoaderUtils工具类进行获取
[Java] 纯文本查看 复制代码
/**
* 通过Spring中的PropertiesLoaderUtils工具类进行获取
*/
public class PropertiesTest2 {

    @Test
    public void proRead(){

        try {
            Properties pro = PropertiesLoaderUtils.loadAllProperties("data.properties");


            Set<Map.Entry<Object, Object>> entries = pro.entrySet();

            for (Map.Entry<Object, Object> entry : entries) {

                String value =(String)entry.getValue();
                value = URLEncoder.encode(value, "ISO-8859-1");
                value = URLDecoder.decode(value, "GBK");

                System.out.println(entry.getKey()+"------"+value);
            }


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


读取方式三:

通过 java.util.ResourceBundle 类读取
[Java] 纯文本查看 复制代码
/**
* 通过 java.util.ResourceBundle 类读取
*/
public class PropertiesTest3 {

    @Test
    public void proRead(){

        ResourceBundle resourceBundle = ResourceBundle.getBundle("data");
        //遍历取值
        Enumeration enumeration = resourceBundle.getKeys();
        while (enumeration.hasMoreElements()) {
            try {
                String key = (String) enumeration.nextElement();
                String value = resourceBundle.getString(key);

                value = URLEncoder.encode(value, "ISO-8859-1");
                value = URLDecoder.decode(value, "GBK");

                System.out.println(key+"------"+value);
            } catch (UnsupportedEncodingException e) {
                e.printStackTrace();
            }
        }

    }
}


总结:









欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2