설명을 위해 : setRequestProperty("User-Agent", "Mozilla ...")
이제 잘 작동 java/xx
하며 끝에 추가되지 않습니다 ! 적어도 Java 1.6.30 이상에서는.
netcat (포트 리스너)를 사용하여 내 컴퓨터에서 수신했습니다.
$ nc -l -p 8080
단순히 포트에서 수신 대기하므로 원시 http-headers와 같이 요청 된 모든 것을 볼 수 있습니다.
그리고 setRequestProperty없이 다음과 같은 http-headers를 얻었습니다.
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());
}
}