About Question enthuware.ocpjp.v7.2.1205 :
Posted: Thu Dec 05, 2013 7:57 am
There is an syntax error in this line:
OutputStream os = new FileOutputStream(records2);) {
The last bracket and curly bracked needs to be omitted. Otherwise the code won't compile, not even with the right solution.
OutputStream os = new FileOutputStream(records2);) {
The last bracket and curly bracked needs to be omitted. Otherwise the code won't compile, not even with the right solution.