标签:style blog http io ar color os sp java
1 public static void saveStreamToFile(String savePath,String input){ 2 try { 3 //savePath like c:/log.txt 4 System.setOut(new PrintStream(new FileOutputStream(savePath))); 5 System.out.println(input); 6 } catch (FileNotFoundException e) { 7 e.printStackTrace(); 8 } 9 }
java将System.out.println的输出导出到文件中
标签:style blog http io ar color os sp java
原文地址:http://www.cnblogs.com/tommy-huang/p/4113590.html