vote up 5 vote down star
1

When does java let go of a connections to a URL? I don't see a close() method on either URL or URLConnection so does it free up the connection as soon as the request finishes? I'm mainly asking to see if I need to do any clean up in an exception handler.

try {
  URL url = new URL("http://foo.bar");
  URLConnection conn = url.openConnection();
  // use the connection
}
catch (Exception e) {
  // any clean up here?
}
flag

Never use catch( Exception ) , if an specific exception is thrown, catch each one in its own clause – Oscar Reyes May 26 at 20:36

5 Answers

vote up 5 vote down check

It depends on the specific protocol specified in the protocol. Some maintain persistent connections, other close their connections when your call close in the input or outputstream given by the connection. But other than remembering to closing the streams you opened from the URLConnection, there is nothing else you can do.

From the javadoc for java.net.URLConnection

Invoking the close() methods on the InputStream or OutputStream of an URLConnection after a request may free network resources associated with this instance, unless particular protocol specifications specify different behaviours for it.

link|flag
vote up 4 vote down

Agreed with @kasperjj.

By the way, cleanup should really go in a finally{} block...

link|flag
vote up 2 vote down

If you cast to an HttpURLConnection, there is a disconnect() method. If the connection is idle, it will probably disconnect immediately. No guarantees.

link|flag
vote up 1 vote down

I've got a strange use-case where I don't open the underlying stream :

    /**
 * rewriting for static resources
 *
 * @param path the path, with the leading /
 */
public static String stat(final String path) {
    try {
        final URL resource = ServletActionContext.getServletContext().getResource(path);
        final URLConnection connection = resource.openConnection();
        final long l = connection.getLastModified();
        return STATIC_CONTENT_PREFIX + path + "?" + l;
    } catch (MalformedURLException e) {
        throw new RuntimeException(e);
    } catch (IOException e) {
        throw new RuntimeException(e);
    }
}

it's for fooling the browser cache for static resources in my web app (generating urls like: http://static.example.com/static/lol.css?123000000 from an input like "/static/lol.css").

does my code leaks any resources ?

link|flag
It looks like my scheme is foiled by tomcat who updates the lastModified to the date of the deployment when it unpacks the war. – nraynaud Mar 2 at 5:08
1  
Yes, it seems it does. I tested your code with Process Explorer on windows and only after adding: InputStream fis = connection.getInputStream(); fis.close(); did it close the connection. – Dan Mar 18 at 17:33
vote up 0 vote down

I've been having the exact problem. I was getting lots of java.net.BindException: Address already in use: connect. I've used system internals tcpview and there were thousands of connections open. Using HttpURLConnection helped, but didn't solve the problem completely.

link|flag

Your Answer

Get an OpenID
or

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