首页 > 代码库 > 重定向syste.out.print

重定向syste.out.print

PrintStream ps;
try {
      ps = new PrintStream("D:\\role.txt");
      System.setOut(ps);
    } catch (FileNotFoundException e) {
      e.printStackTrace();
     }

重定向syste.out.print