平日我们的内容都是输出在控制,现在小加变动,我们可以让他输出到文件。
package cn.cqvie.chapter01.exam1;import java.io.FileNotFoundException;
import java.io.PrintStream;public class RediretOutputStream {public static void main(String[] args) {PrintStream out =System.out;try {PrintStream pf =new PrintStream("myFile.txt");System.out.println("有信息开始写入了文件myFile.txt内 ...");System.setOut(pf);System.out.println("信创 -- 教研组 -- 栾文道 -- 爱好是最好的老师~!");System.setOut(out);System.out.println("写入完毕");} catch (FileNotFoundException e) {throw new RuntimeException(e);}}}