Dla wyjaśnienia: setRequestProperty("User-Agent", "Mozilla ...")
teraz działa dobrze i nie dodaje się java/xx
na końcu! Przynajmniej z Javą 1.6.30 i nowszą.
Słuchałem na moim komputerze z netcatem (nasłuchiwaniem portów):
$ nc -l -p 8080
Po prostu nasłuchuje na porcie, więc widzisz wszystko, co jest żądane, na przykład surowe nagłówki http.
Otrzymano następujące nagłówki http bez 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, *
I Z 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, *
Jak widać, agent użytkownika został poprawnie ustawiony.
Pełny przykład:
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());
}
}