Fill in the spaces with the possible missing keywords. _…
Fill in the spaces with the possible missing keywords. ____[A]_____ void readSettings( ) ____[C]___ Exception { File myFile = null; ___[D]__ { myFile = new File(“settings.txt”); } ___[E]___ (IOException ioe) { System.out.println(“The file couldn’t open”); } finally { if(myFile != null) myFile.close(); } }
Read Details