About Question enthuware.ocpjp.ii.v11.2.3337 :
Posted: Thu Aug 29, 2019 7:50 am
In code:
Omit the fact that there is no such method: Files.readLines
The line: System.out.println(str);
Should be -> System.out.println(s);
If it is not intentional.
Code: Select all
String[] stra = Files.readLines(Paths.get(INPUT_FILE));
for(String s: stra) System.out.println(str);
The line: System.out.println(str);
Should be -> System.out.println(s);
If it is not intentional.