本帖最后由 王德云 于 2011-12-22 23:03 编辑
- public static void loadDemo() throws IOException {
- Properties prop = new Properties();
- //你下面这是从输入流中读取属性列表(键和元素对),不要结果也是一样的。
- //FileInputStream fis = new FileInputStream("info.txt");
- //prop.load(fis);
- prop.setProperty("wangwu", "39");
- prop.store(new FileOutputStream("info.txt"), "a");
- // System.out.println(prop);
- prop.list(System.out); // 命令提示符中结果正确,但是文件夹下文件数据没有改变,是怎么回事,怎么才能同时改变
- }
- }
复制代码 如果要把数据写到文件中,要用到输出流。 |