System输出重定向

System输出重定向
  1. PrintStream myout = new PrintStream(new FileOutputStream(new File("D:/log.log")));        
  2. System.setOut(myout);         
  3. System.setErr(myout);

你可能感兴趣的:(System输出重定向)