System.out和System.err调用的随机打印顺序

请参见下面的代码段

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.

为什么会这样呢?

回答:

我相信这是因为您正在写入两个不同的输出(一个是标准输出,另一个是标准错误)。这些可能在运行时由两个不同的线程处理,以允许在Java执行期间同时写入两者。假设是这种情况,cpu任务调度程序将不会每次都以相同的顺序执行线程。

如果您所有的输出都流向相同的输出流(即,一切都输出到标准输出或一切都输出到标准err),则永远不要获得此功能。您将永远无法保证标准错误与标准输出的执行顺序。

以上是 System.out和System.err调用的随机打印顺序 的全部内容, 来源链接: utcz.com/qa/408249.html

回到顶部