Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My code is like the following:

URLConnection cnx = address.openConnection();
cnx.setAllowUserInteraction(false);         
cnx.setDoOutput(true);
cnx.addRequestProperty("User-Agent", 
    "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
InputStream is = cnx.getInputStream();

Is it ok if I set the headers before I get the InputStream? Will my header be sent, or will the server see the default URLConnection's user-agent ( if any ) ?

share|improve this question

3 Answers 3

up vote 17 down vote accepted

The headers must be set prior to getting the InputStream to have any affect - an IllegalStateException will be thrown if the connection is already open.

As far as the User-Agent header specifically, it should be sent if it has been set.

See the URLConnection JavaDoc.

share|improve this answer
1  
This link is broken. –  Fabii Apr 3 '12 at 14:32

I'd advise against using low-level constructs such as URLConnection. There are plenty of libraries for sending HTTP requests, with the most prominent being Apache HTTP Client.

share|improve this answer
    
(should be comment, does not answer question) –  BadZen Apr 7 at 17:00

To answer the question, the code is correct. The moment getInputStream(), an HTTP get is sent to the target server.

A side-note on user-agent, if you don't set it, URLConnection will send the default one anyway, which is:

User-Agent: Java/1.6.0_24 (varies depending on your java version)
share|improve this answer

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.