Mi aspetto che il lettore bufferizzato e il lettore di file si chiudano e le risorse vengano rilasciate se viene generata l'eccezione.
public static Object[] fromFile(String filePath) throws FileNotFoundException, IOException
{
try (BufferedReader br = new BufferedReader(new FileReader(filePath)))
{
return read(br);
}
}
Tuttavia, è necessario disporre di una catch
clausola per la chiusura con successo?
MODIFICARE:
In sostanza, il codice sopra in Java 7 è equivalente al seguente per Java 6:
public static Object[] fromFile(String filePath) throws FileNotFoundException, IOException
{
BufferedReader br = null;
try
{
br = new BufferedReader(new FileReader(filePath));
return read(br);
}
catch (Exception ex)
{
throw ex;
}
finally
{
try
{
if (br != null) br.close();
}
catch(Exception ex)
{
}
}
return null;
}