我有这个问题。我想读取所有控制台行的所有输入和输出以及对文件的错误。我写了我的代码,但我不想作很多改动。是否可以读取所有控制台行?
好吧,对于使用简单扫描仪的输入而言。对于输出和错误,而不是用System.out.println("output");将其打印掉,请先将其保存为String log = "output" System.out.println(log);之类的字符串,然后可以将所有这些字符串加到文件或最终字符串中,然后就可以了!
System.out.println("output");
String log = "output" System.out.println(log);