public Scanner(String filename, boolean traceScan) throws FileNotFoundException {
String filecontent = getFileContent(filename);
splitLine(filecontent);
if (traceScan){
PrintStream out = System.out; // 保留控制台输出流
PrintStream out_file = new PrintStream("./"+filename.split("\\.")[0]+"_scaner.txt"); // 文件输出流
System.setOut(out_file); // 修改指向
PrintToken(); //System.out.println()操作
System.setOut(out); // 设置回原控制台输出流
PrintToken();
}
}