Estou esperando que o leitor em buffer e o leitor de arquivos fechem e os recursos sejam liberados se a exceção for lançada.
public static Object[] fromFile(String filePath) throws FileNotFoundException, IOException
{
try (BufferedReader br = new BufferedReader(new FileReader(filePath)))
{
return read(br);
}
}
No entanto, é necessário ter uma catch
cláusula para o fechamento bem-sucedido?
EDITAR:
Essencialmente, o código acima em Java 7 é equivalente ao código abaixo 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;
}