httpurlconnection 设置请求头
时间: 2023-08-31 07:06:11 浏览: 100
JAVA获取HTTP请求头的方法示例
可以使用`setRequestProperty`方法设置HTTP请求头。示例代码如下:
```
URL url = new URL("http://www.example.com");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("User-Agent", "Mozilla/5.0");
conn.setRequestProperty("Accept-Language", "en-US,en;q=0.5");
int responseCode = conn.getResponseCode();
System.out.println("Response Code : " + responseCode);
```
在这个例子中,我们使用`setRequestProperty`方法设置了两个HTTP请求头,分别是`User-Agent`和`Accept-Language`。在实际使用中,你可以根据需要设置其他的请求头。
阅读全文