Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have often come across situations like :-

try{ 
     ...
     stmts
     ...
} 
catch(Exception ex) {
     ... 
     stmts
     ... 
} finally {
     connection.close // throws an exception
}

which still needs a try - catch block inside finally.

What is the best practice to overcome this?

share|improve this question
You probably find that the resource acquisition throws as well. (So really use seth's answer.) – Tom Hawtin - tackline Aug 26 '09 at 16:34

8 Answers

up vote 18 down vote accepted

Write a SQLUtils class that contains static closeQuietly methods that catch and log such exceptions, then use as appropriate.

You'll end up with something that reads like this:

public class SQLUtils 
{
  private static Log log = LogFactory.getLog(SQLUtils.class);

  public static void closeQuietly(Connection connection)
  {
    try
    {
      if (connection != null)
      {
        connection.close();
      }
    }
    catch (SQLExcetpion e)
    {
      log.error("An error occurred closing connection.", e);
    }
  }

  public static void closeQuietly(Statement statement)
  {
    try
    {
      if (statement!= null)
      {
        statement.close();
      }
    }
    catch (SQLExcetpion e)
    {
      log.error("An error occurred closing statement.", e);
    }
  }

  public static void closeQuietly(ResultSet resultSet)
  {
    try
    {
      if (resultSet!= null)
      {
        resultSet.close();
      }
    }
    catch (SQLExcetpion e)
    {
      log.error("An error occurred closing result set.", e);
    }
  }
}

And your client code will be something like:

Connection connection = null;
Statement statement = null;
ResultSet resultSet = null;
try 
{
  connection = getConnection();
  statement = connection.prepareStatement(...);
  resultSet = statement.executeQuery();

  ...
}
finally
{
  SQLUtils.closeQuietly(resultSet);
  SQLUtils.closeQuietly(statment);
  SQLUtils.closeQuietly(connection);
}
share|improve this answer
7  
This is my choice as well in the past, but I have found these days that there are classes, like apache commons DBUtil, that do this for you. – Chris Kessel Aug 26 '09 at 16:57
looks like a good option :) Thanks – Ajay Aug 27 '09 at 4:11

I usually did it this way:

try {
    try {
        ..
        stmts
        ...
    }
    finally {
       connection.close():
    }
} catch (Exception ex) {
     ..
     stmts
     ..    
}

I usually only used this when I wasn't using a library that took care of this plumbing for me.

As Imagist points out, this isn't technically the same as the finally will run before the catch but I think it solves the problem you were trying to solve.

share|improve this answer
That's not technically the same, but depending on the situation it might do what Ajay wants. – Imagist Aug 26 '09 at 16:07
@Imagist: Good point. I'll update my answer. Thanks. – seth Aug 26 '09 at 16:26
You can of course then abstract that with the Execute Around idiom. – Tom Hawtin - tackline Aug 26 '09 at 16:33
@tackline: thanks! Hadn't seen that before. Here's a link about it for others that are interested: stackoverflow.com/questions/341971/… – seth Aug 26 '09 at 16:40
3  
The thing with this approach is that typically you don't want to do the same thing with exceptions related to the close as you do with exceptions in the main body of the method - and worse, this code would swallow exceptions in the main body if the finally threw an exception. – Yishai Aug 26 '09 at 16:41

As others have mentioned, a static closeQuietly utility is the way to go. One thing to add - if you are in the world of java.io rather than java.sql then there is a useful interface for exactly this purpose - java.io.Closeable

All the data sources and sinks in java.io implement this interface - all streams, channels, writers and readers. That way you can create a single utility to cope with the same "exception on close()" issue without requiring many overloaded versions.

e.g.

public class IoUtils {

  public static closeQuietly (Closeable closeable) {
    try {
      closeable.close();
    } catch (IOException logAndContinue) {
      ...
    }
  }

}
share|improve this answer

Commons-io also has closeQuietly() for in and output streams. I'm using it all the time. It makes your code much more readable.

share|improve this answer

Don't hesitate use one more try ... catch inside finally.

share|improve this answer

Generally you don't want to do anything more than log an exception which happens when closing a resource, so it should really go in its own try/catch. However, this is generic code that will happen often, so Don't Repeat Yourself, and put the close in a static method (as Nick Holt suggests) that way you won't have the two try/catch items in the same method, making the code easier to read and follow.

share|improve this answer
I'm not sure I agree with that. To my mind, a failure to close a resource represents a more severe problem than a typical exception that would occur during usage. One should endeavor to keep the inner exception (easier in vb.net than C#) but throw a "more severe" one. – supercat Dec 17 '10 at 3:04
If you are reading from the network and you are done, is it really of any consequence that the resource failed to close? It certainly doesn't change anything about the program. – Yishai Dec 21 '10 at 13:38
unless it leaves the port open and unusable for anyone else – Sam Brinck Feb 1 '12 at 22:56

There is also handy Closeables#closeQuitely method in Google Guava library - it can be used for any Closeable

share|improve this answer

just remember .. finally always get execute either with try or catch ..

share|improve this answer
Your point being ? – Philippe Carriere Aug 26 '09 at 17:12
didnt get your point – Ajay Aug 29 '09 at 8:22
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post - you can always comment on your own posts, and once you have sufficient reputation you will be able to comment on any post. – Dervall Aug 28 '12 at 14:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.