为什么 Properties.list(PrintWriter out) 没有打印任何东西?

why Properties.list(PrintWriter out) is not printing anything?

我是 Java 的新手,正在尝试学习 class 属性。我想出了下面的代码。我想使用不同的方法打印存储在 Properties 变量 p2 中的 "keys" 和 "values"。但是,代码

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");

}

您必须在 p2.list(pw1) 之后调用 pw1.flush() 才能将缓存的文本写入控制台。