我是Java的新手,正在尝试学习类属性。我想出了下面的代码。我想打印"键"和"价值观"使用不同的方法存储在Properties变量p2中。但是,代码
PrintWriter pw1 = new PrintWriter(System.out);
p2.list(pw1);
似乎没有打印出任何东西。为什么会这样?有人可以帮帮我吗?在此先感谢您的帮助!
Properties p1 = new Properties();
try (OutputStream os1 = new FileOutputStream("whateverAmericaFile2.txt")){
p1.setProperty("1", "one");
p1.setProperty("2", "two");
p1.setProperty("3", "three");
p1.store(os1, "comment");
} catch(IOException e){
e.printStackTrace();
}
Properties p2 = new Properties();
try (InputStream is1 = new FileInputStream("whateverAmericaFile2.txt")){
p2.load(is1);
System.out.println(p2.getProperty("2"));
} catch (IOException e){
e.printStackTrace();
}
System.out.println("before PrintWriter");
PrintWriter pw1 = new PrintWriter(System.out);
p2.list(pw1);
System.out.println("After PrintWriter, before Enumeration ");
Enumeration<Object> eo1 = p2.elements();
while (eo1.hasMoreElements()){
System.out.println(eo1.nextElement());
}
System.out.println("after Enumeration");
}
答案 0 :(得分:1)
您必须在pw1.flush()
之后调用p2.list(pw1)
才能将缓存的文本写入控制台。