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

I'm using the HttpURLConnection to open connections to web pages. I call the connect() method to open the connection.

I not found an isConnected() method.

I need to know when the connection was established with the server. I need this because I tryinf to found a fast way to open multiple connections. One object open connections and another do some processing with the connections that established the communication with the server.

I want to let the processor always busy.

share|improve this question

2 Answers

up vote 0 down vote accepted

Not sure why you would need that information.

You should not care since once you call connect() you can start retrieving the response e.g.

int responseCode = connection.getResponseCode();//Get HTTP status code

Assuming of course you have send all your request to the output stream.

The HttpURLConnection under the hood knows if it is already connected to the server and the implementation reuses the connection (transparent to you).

Now, having said that to answer your question, I think that the only way to know if the HttpURLConnection's state is connected to the server, is to call openConnection() a second time in the same HttpURLConnection object.

If it is already connected it will throw a relevant exception complaining that it is already connected something like: IllegalStateException("Already connected");.

At that point you know that the HttpURLConnection is connected

share|improve this answer
httpURLConnection con = new httpURLConnection(some URL object);

con.getHeaderField(httpURLConnection.HTTP_CREATED );
share|improve this answer
header information can be messed with, and I avoid relying on the header for anything. however, this should head you in the right direction. – DefyGravity Sep 30 '11 at 18:24

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.