search
HomeJavajavaTutorialHow to Correctly Set the User-Agent in Java URLConnection?

How to Correctly Set the User-Agent in Java URLConnection?

Setting User Agent of a Java URLConnection

When attempting to parse a webpage using Java with URLConnection and setting the user-agent to a specified value, an additional "Java/1.5.0_19" may be appended to the end. This arises due to a limitation in older versions of Java.

Solution (Java 1.6.30 and Newer)

In Java 1.6.30 and newer, this issue has been resolved. Setting the user agent using setRequestProperty("User-Agent", "Mozilla ...") now works correctly without appending the Java version.

Verification

To verify this, you can listen on a port using netcat, which displays the raw HTTP headers of incoming requests. Without setting the user agent, the headers will show:

GET /foobar HTTP/1.1
User-Agent: Java/1.6.0_30
Host: localhost:8080
Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
Connection: keep-alive

When setting the user agent, the headers will instead show:

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, */*; q=.2
Connection: keep-alive

Example Code (Java 1.6.30 )

The following code example demonstrates how to correctly set the user agent:

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());
    }

}

The above is the detailed content of How to Correctly Set the User-Agent in Java URLConnection?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to avoid data overwriting and style loss of merged cells when using EasyExcel for template filling?How to avoid data overwriting and style loss of merged cells when using EasyExcel for template filling?Apr 19, 2025 pm 06:51 PM

How to avoid data overwriting and style loss of merged cells when using EasyExcel for template filling? Using EasyExcel for Excel...

As a Java programmer, how do you turn to audio and video development? What basic knowledge and resources do you need to learn?As a Java programmer, how do you turn to audio and video development? What basic knowledge and resources do you need to learn?Apr 19, 2025 pm 06:48 PM

How to switch from Java programmers to audio and video development? Learning Paths and Resources Recommendations If you are a Java programmer and are participating in a video project, �...

How to efficiently count the number of node services in MYSQL tree structure and ensure data consistency in Java?How to efficiently count the number of node services in MYSQL tree structure and ensure data consistency in Java?Apr 19, 2025 pm 06:45 PM

How to efficiently count the number of node services in MYSQL tree structure in Java? When using MYSQL database, how to count the number of nodes in the tree structure...

How do newcomers choose Java project management tools for backends: Maven or IntelliJ? Use the Maven that comes with IDEA or an additional download?How do newcomers choose Java project management tools for backends: Maven or IntelliJ? Use the Maven that comes with IDEA or an additional download?Apr 19, 2025 pm 06:42 PM

How do newcomers choose Java project management tools for backends? Newbie who are just starting to learn back-end development often feel confused about choosing project management tools. Special...

How do Java programmers get started with audio and video development? Need to learn C?How do Java programmers get started with audio and video development? Need to learn C?Apr 19, 2025 pm 06:39 PM

How do Java programmers get started with audio and video development? Learning Resources Recommended As a Java programmer, if you are participating in a video project but are interested in audio and video technology...

Why do the number of lines double when poi-tl draws a double Y-axis line chart?Why do the number of lines double when poi-tl draws a double Y-axis line chart?Apr 19, 2025 pm 06:33 PM

Troubleshooting the number of lines doubled when poi-tl draws a double Y-axis line chart. When using poi-tl library to draw a line chart containing two Y-axis, I encountered a strange problem: �...

How to centralize the Entity, Mapper, and Service of the business module into the Common module in Spring Cloud Alibaba?How to centralize the Entity, Mapper, and Service of the business module into the Common module in Spring Cloud Alibaba?Apr 19, 2025 pm 06:30 PM

How to centralize the Entity, Mapper and Service of the business module into the Common module in SpringCloudAlibaba? Using SpringCloud...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment