I am using HTTPURLConnection to connect to a web service. I know how to use HTTPURLConnection but I want to understand how it works. Basically, I want to know the following:
- On which point does
HTTPURLConnectiontry to establish a connection to the given URL? - On which point can I know that I was able to successfully establish a connection?
- Are establishing a connection and sending the actual request done in one step/method call? What method is it?
- Can you explain the function of
getOutputStreamandgetInputStreamin layman’s term? I notice that when the server I’m trying to connect to is down, I get anExceptionatgetOutputStream. Does it mean thatHTTPURLConnectionwill only start to establish a connection when I invokegetOutputStream? How about thegetInputStream? Since I’m only able to get the response atgetInputStream, then does it mean that I didn’t send any request atgetOutputStreamyet but simply establishes a connection? DoHttpURLConnectiongo back to the server to request for response when I invokegetInputStream? - Am I correct to say that
openConnectionsimply creates a new connection object but does not establish any connection yet? - How can I measure the read overhead and connect overhead?
The first 3 answers to your questions are listed as inline comments, beside each method, in the example HTTP POST above.
From getOutputStream:
Basically, I think you have a good understanding of how this works, so let me just reiterate in layman’s terms.
getOutputStreambasically opens aconnectionstream, with the intention of writing data to the server. In the above code example “message” could be a comment that we’re sending to the server that represents a comment left on a post. When you seegetOutputStream, you’re opening theconnectionstream for writing, but you don’t actually write any data until you callwriter.write("message=" + message);.From getInputStream():
getInputStreamdoes the opposite. LikegetOutputStream, it also opens aconnectionstream, but the intent is to read data from the server, not write to it. If the connection or stream-opening fails, you’ll see aSocketTimeoutException.Keep in mind that sending a request and sending data are two different operations. When you invoke
getOutputStream or getInputStreamurl.openConnection(), you send a request to the server to establish a connection. There is a handshake that occurs where the server sends back an acknowledgement to you that the connection is established. It is then at that point in time that you’re prepared to send or receive data. Thus, you do not need to call getOutputStream toestablish a connectionopen a stream, unless your purpose for making the request is to send data.In layman’s terms, making a
getInputStreamrequest is the equivalent of making a phone call to your friend’s house to say “Hey, is it okay if I come over and borrow that pair of vice grips?” and your friend establishes the handshake by saying, “Sure! Come and get it”. Then, at that point, the connection is made, you walk to your friend’s house, knock on the door, request the vice grips, and walk back to your house.Using a similar example for
getOutputStreamwould involve calling your friend and saying “Hey, I have that money I owe you, can I send it to you”? Your friend, needing money and sick inside that you kept it for so long, says “Sure, come on over you cheap bastard”. So you walk to your friend’s house and “POST” the money to him. He then kicks you out and you walk back to your house.Now, continuing with the layman’s example, let’s look at some Exceptions. If you called your friend and he wasn’t home, that could be a 500 error. If you called and got a disconnected number message because your friend is tired of you borrowing money all the time, that’s a 404 page not found. If your phone is dead because you didn’t pay the bill, that could be an IOException. (NOTE: This section may not be 100% correct. It’s intended to give you a general idea of what’s happening in layman’s terms.)
Question #5:
Yes, you are correct that openConnection simply creates a new connection object but does not establish it. The connection is established when you call either getInputStream or getOutputStream.openConnectioncreates a new connection object. From the URL.openConnection javadocs:The connection is established when you call openConnection, and the InputStream, OutputStream, or both, are called when you instantiate them.
Question #6:
To measure the overhead, I generally wrap some very simple timing code around the entire connection block, like so:
I’m sure there are more advanced methods for measuring the request time and overhead, but this generally is sufficient for my needs.
For information on closing connections, which you didn’t ask about, see In Java when does a URL connection close?.