Espero que el lector de búfer y el lector de archivos se cierren y los recursos se liberen si se lanza la excepción.
public static Object[] fromFile(String filePath) throws FileNotFoundException, IOException
{
try (BufferedReader br = new BufferedReader(new FileReader(filePath)))
{
return read(br);
}
}
Sin embargo, ¿existe algún requisito para tener una catch
cláusula para un cierre exitoso?
EDITAR:
Esencialmente, el código anterior en Java 7 es equivalente al siguiente para 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;
}