Properties集合

晚上好,我是音神,现在是:2021年12月2日23:27:53

load方法,读取 properties 文件

@Test
    public void t1() throws IOException {
        Properties pro = new Properties();
        FileReader fr = new FileReader("E:\\github\\java-basics\\src\\test\\java\\pro.properties");
        //调用集合的方法load,传递字符输入流
        pro.load(fr);
        fr.close();
        System.out.println(pro);
    }

store方法,将集合中的键值对,写回文件中保存

@Test
    public void t2() throws IOException {
        Properties pro = new Properties();
        pro.setProperty("name","guobiting");
        pro.setProperty("age","31");
        pro.setProperty("email","[email protected]");
        FileWriter fw=new FileWriter("E:\\github\\java-basics\\src\\test\\java\\pro.properties");
        //键值对,存回文件,使用集合的方法store传递字符输出流
        pro.store(fw,"");
    }

你可能感兴趣的:(Properties集合)