Given the code fragment:
public static void main (String[] args) throws IOException {
BufferedReader brCopy = null;
try (BufferedReader br = new BufferedReader (new FileReader(''employee.txt''))) { //
line n1
br.lines().forEach(c -> System.out.println(c));
brCopy = br;//line n2
}
brCopy.ready(); //line n3;
}
Assume that the ready method of the BufferedReader, when called on a closed BufferedReader, throws an exception, and employee.txt is accessible and contains valid text.
What is the result?
Deangelo
1 months agoEdelmira
1 months agoInes
5 days agoTemeka
18 days agoEmily
1 months agoFrank
2 months agoCarla
5 days agoJolene
8 days agoBarrett
16 days agoTalia
21 days agoCarissa
1 months agoAvery
1 months agoAndree
2 months agoTeri
6 days agoKirk
22 days agoBong
1 months agoNoel
2 months agoKanisha
2 months agoZana
3 months agoKanisha
3 months ago