Случайный порядок печати для вызовов 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 печатается первым. ниже приведены случайные выводы, которые я получаю

Output 1
Finally is executed.File stream is closed.
this is a text file 
and a java program will read this file.
Output 2
this is a text file 
and a java program will read this file.
Finally is executed.File stream is closed.

Почему это так?

Ответы на вопрос(3)

Ваш ответ на вопрос