美文网首页
Java中Properties类的使用

Java中Properties类的使用

作者: 0小水瓶0 | 来源:发表于2020-03-06 14:35 被阅读0次

    Properties集合是java中比较重要的API,他是一个唯一和IO流相结合的集合,他可以将键值对存放在文件中。

    1、介绍

    • java.util.Properties集合 extends Hashtable<k,v> implements Map<k,v>
    • Properties 类表示了一个持久的属性集Properties 可保存在流中或从流中加载。
    • Properties集合是一个唯一和IO流相结合的集合
    • 可以使用Properties集合中的方法store,把集合中的临时数据,持久化写入到硬盘中存储
    • 可以使用Properties集合中的方法load,把硬盘中保存的文件(键值对),读取到集合中使用
    • 属性列表中每个及其对应都是一个字符串
    • Properties集合是一个双列集合,keyvalue默认都是字符串

    2、Properties集合存值和取值

    • Properties使用setProperty(String key,String value)方法存值
    • Properties使用stringPropertyNames()方法取所有key值并放在Set集合中
    • Properties使用getProperty(String key)方法取值
    private static void show1() {
            //创建一个Properties集合对象
            Properties prop=new Properties();
            //使用Properties对象的setProperty方法存储值
            prop.setProperty("A","111");
            prop.setProperty("B","222");
            prop.setProperty("C","333");
            //使用Properties对象的stringPropertyNames方法来获取集合中key的值
            Set<String> keys = prop.stringPropertyNames();
            for (String key:keys){
                String value = prop.getProperty(key);
                System.out.println(key+":"+value);
            }
        }
    

    3、Properties集合将临时数据写入到文件中

    可以使用Properties集合中的方法store,把集合中的临时数据,持久化写入到硬盘中存储
    void store(OutputStream out, String comments)
    void store(Writer writer, String comments)
    参数:
    1.OutputStream out:字节输出流,不能写入中文
    2.Writer writer:字符输出流,可以写中文
    3.String comments:注释,用来解释说明保存的文件是做什么用的不能使用中文,会产生乱码,默认是4.Unicode编码一般使用""空字符
    使用步骤:
    1.创建Properties集合对象,添加数据
    2.创建字节输出流/字符输出流对象,构造方法中绑定要输出的目的地
    3.使用Properties集合中的方法store,把集合中的临时数据,持久化写入到硬盘中存储
    4.释放资源

     private static void show2() throws IOException {
            //创建一个Properties对象
            Properties prop=new Properties();
            //往集合中存值
            prop.setProperty("A","你好");
            prop.setProperty("B","爱好");
            prop.setProperty("C","资源");
            //创建字符流FileWrite对象
            FileWriter fw=new FileWriter("D:\\a\\f.txt");
            //往集合中存值
            prop.store(fw,"hello properties");
            //关闭流
            fw.close();
        }
    

    4、Properties集合将文件数据写读取到集合中

    可以使用Properties集合中的方法load,把硬盘中保存的文件(键值对),读取到集合中使用
    void load(InputStream inStream)
    void load(Reader reader)
    参数:
    1.InputStream inStream:字节输入流,不能读取含有中文的键值对
    2.Reader reader:字符输入流,能读取含有中文的键值对
    使用步骤:
    1.创建Properties集合对象
    2.使用Properties集合对象中的方法load读取保存键值对的文件
    3.遍历Properties集合
    注意:
    1.存储键值对的文件中,键与值默认的连接符号可以使用=,空格(其他符号)
    2.存储键值对的文件中,可以使用#进行注释,被注释的键值对不会再被读取
    3.存储键值对的文件中,键与值默认都是字符串,不用再加引号

    private static void show3() throws IOException {
            //创建Properties对象
            Properties prop=new Properties();
            //创建FileRead对象
            FileReader fr=new FileReader("D:\\a\\f.txt");
            //使用Properties对象load方法读取文件内容
            prop.load(fr);
    
            //遍历prop对象里面的值
            Set<String> keys = prop.stringPropertyNames();
            for (String key : keys) {
                String value = prop.getProperty(key);
                System.out.println(key+"="+value);
            }
            //关闭流
            fr.close();
        }
    

    相关文章

      网友评论

          本文标题:Java中Properties类的使用

          本文链接:https://www.haomeiwen.com/subject/nelirhtx.html