Fill in the spaces with the possible missing keywords.     _…

Fill in the spaces with the possible missing keywords.     _________     void readSettings(   )      _______     Exception {           File myFile = null;      _____  {                                myFile = new File(“settings.txt”);                       }     ______ (IOException ioe)                {                         System.out.println(“The file couldn’t open”); }              finally   {   if(myFile != null) myFile.close();          }   }