重定向syste.out.print

PrintStream ps;
          try {
               ps = new PrintStream("D:\role.txt");
               System.setOut(ps);
          } catch (FileNotFoundException e) {
               e.printStackTrace();
          }
原文地址:https://www.cnblogs.com/king-/p/4389682.html