स्पष्टीकरण के लिए: setRequestProperty("User-Agent", "Mozilla ...")
अब ठीक काम करता है और java/xx
अंत में संलग्न नहीं होता है ! कम से कम जावा 1.6.30 और नए के साथ।
मैंने अपने मशीन पर netcat (एक पोर्ट श्रोता) के साथ सुना:
$ nc -l -p 8080
यह केवल पोर्ट पर सुनता है, इसलिए आप कुछ भी देखते हैं जो अनुरोधित हो जाता है, जैसे कच्चे http-headers।
और निम्नलिखित http-headers को बिना setRequestProperty मिला:
GET /foobar HTTP/1.1
User-Agent: Java/1.6.0_30
Host: localhost:8080
Accept: text/html, image/gif, image/jpeg, *; q=.2, *
और setRequestProperty के साथ:
GET /foobar HTTP/1.1
User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2
Host: localhost:8080
Accept: text/html, image/gif, image/jpeg, *; q=.2, *
जैसा कि आप देख सकते हैं कि उपयोगकर्ता एजेंट ठीक से सेट किया गया था।
पूर्ण उदाहरण:
import java.io.IOException;
import java.net.URL;
import java.net.URLConnection;
public class TestUrlOpener {
public static void main(String[] args) throws IOException {
URL url = new URL("http://localhost:8080/foobar");
URLConnection hc = url.openConnection();
hc.setRequestProperty("User-Agent", "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4; en-US; rv:1.9.2.2) Gecko/20100316 Firefox/3.6.2");
System.out.println(hc.getContentType());
}
}