请参阅下面的代码段
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
public class ReadFile {
public static void main(String[] args) {
String str="";
FileReader fileReader=null;
try{
// I am running on windows only & hence the path :)
File file=new File("D:\\Users\\jenco\\Desktop\\readme.txt");
fileReader=new FileReader(file);
BufferedReader bufferedReader=new BufferedReader(fileReader);
while((str=bufferedReader.readLine())!=null){
System.err.println(str);
}
}catch(Exception exception){
System.err.println("Error occured while reading the file : " + exception.getMessage());
exception.printStackTrace();
}
finally {
if (fileReader != null) {
try {
fileReader.close();
System.out.println("Finally is executed.File stream is closed.");
} catch (IOException ioException) {
ioException.printStackTrace();
}
}
}
}
}
当我多次执行代码时,我会随机输出如下所示,有时会在控制台中首先打印System.out语句,有时会首先打印System.err。下面是我得到的随机输出
Finally is executed.File stream is closed.
this is a text file
and a java program will read this file.
this is a text file
and a java program will read this file.
Finally is executed.File stream is closed.
为什么会这样?
答案 0 :(得分:5)
我相信这是因为您正在写两个不同的输出(一个是标准输出,另一个是标准错误)。这些可能在运行时由两个不同的线程处理,以允许在Java执行期间写入两者。假设是这种情况,cpu任务调度程序不会每次都以相同的顺序执行线程。
如果您的所有输出都转到相同的输出流(即一切都标准输出或一切都符合标准错误),您永远不应该获得此功能。永远不会保证标准错误与标准输出的执行顺序。
答案 1 :(得分:1)
因为System.out和System.err都指向您的控制台。
为了演示,如果在println()之后添加System.out.flush()和System.err.flush(),那么输出将是一致的。
答案 2 :(得分:0)
这已经在这里得到了解答:
Java: System.out.println and System.err.println out of order
这是因为您的finally子句正在使用System.out而其他代码正在使用System.err。错误的流在流出之前刷新,反之亦然。
因此,打印数据的顺序将不会保证与调用它的顺序相同。
您始终可以让控制台将错误的流指向文件,或将流指向文件以便以后检查。或者,更改代码以将所有内容打印到System.out。许多程序员不使用err,除非你从控制台中捕获错误,否则有用性是值得商榷的。
只是用完了!
一次又一次......