System.out.println()输出到文件里

 
那如果我不想把他输出到控制台,想把他输出到一个文件里面去怎么做呢?
看下面代码你就明白了。


Java代码
  1. public static void main(String[] args) throws Exception {  
  2.     String str = "abcd";  
  3.     PrintStream out = new PrintStream("f:/test.txt");  
  4.     System.setOut(out);  
  5.     System.out.println(str);  
  6. }  
public static void main(String[] args) throws Exception {
    String str = "abcd";
    PrintStream out = new PrintStream("f:/test.txt");
    System.setOut(out);
    System.out.println(str);
}

你可能感兴趣的:(java编程)