vote up 0 vote down star

I'm using the HttpConnection class in Java to send HTTP requests.
How do I omit unwanted HTTP headers? like:

  • User-Agent
  • Accept
  • Accept-Language
  • Accept-Encoding
  • Accept-Charset
  • Keep-Alive
  • Connection
  • Referer
  • If-Modified-Since
flag

Did you mean a HttpURLConnection? – a paid nerd Sep 19 at 1:33
I'm actually using Java ME which has the HttpConnection class. – Kevin Boyd Sep 19 at 2:27
1  
The problem side of it is that some devices don't allow you the change the standard headers like User-Agent, Accept, Accept-Encoding etc – Ram Sep 19 at 20:19

2 Answers

vote up 2 vote down check

If you are talking about HttpURLConnection, you can't do it. Once the header is set, it can't be removed.

Setting header to null or empty doesn't work. I tried this before on Java 5, it resulted invalid HTTP headers, like

Content-Type: text/html
User-Agent
Content-Length: 123
link|flag
vote up 2 vote down

Yes, setRequestProperty in URLConnection

import java.net.URL;
import java.net.URLConnection;
URL url = new URL("http://www.example.com");
URLConnection urlc = url.openConnection();
urlc.setRequestProperty("User-Agent", null);
link|flag

Your Answer

Get an OpenID
or

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