- package iodemo01;
- import java.io.*;
- import java.util.*;
- public class PropertiesDemo {
- /**
- * @param args
- */
- public static void main(String[] args) throws IOException{
- // TODO Auto-generated method stub
- Properties prop = System.getProperties();
- System.setOut(new PrintStream("D:\\SystemProperties.txt") );
- prop.list(System.out);
-
- }
- }
复制代码
|