Basically, I want to open a file, read some bytes, and then close the file. This is what I came up with:
try
{
InputStream inputStream = new BufferedInputStream(new FileInputStream(file));
try
{
// ...
inputStream.read(buffer);
// ...
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
finally
{
try
{
inputStream.close();
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
Maybe I'm spoiled by RAII, but there must be a better way to do this in Java, right?
catchclauses by propagating the exception. Of course you can't get rid of thefinallyclause if you want to properly close the file. However, from my point of view this is a minor inconvenience and it will be addressed by Java 7 as I mentioned in the answer. The main reason automatic resource management is not as useful in Java as it is in C++ is due to GC. And I mostly use C++ BTW so I am not a Java advocate. – vitaut Jun 6 '11 at 12:03finally. – jalf Jun 6 '11 at 13:45