本帖最后由 freehiker 于 2013-11-13 13:34 编辑
- import java.io.PrintStream;
- import java.io.PrintWriter;
- import java.util.Properties;
- public class PropertiesListMethod {
- public static void main(String[] args) throws Exception {
- // TODO Auto-generated method stub
- Properties props = System.getProperties();
- //源地址是内存中的props,操作的是字节,所以用打印字节流
- props.list(new PrintStream("testStream.txt"));
- props.list(new PrintWriter("testWriter.txt"));
- }
- }
复制代码 如代码所示:list中使用PrintStream可以理解,但是为什么list方法中还可以用PrintWriter呢?上述的例子中,testStream.txt有信息,而testWriter.txt中没有信息,求list带PrintWriter的示例!!!
|