HttpURLConnection如何添加请求头?
时间: 2024-02-21 17:49:17 浏览: 51
JAVA获取HTTP请求头的方法示例
可以使用 `setRequestProperty` 方法来添加请求头,示例如下:
```java
URL url = new URL("http://www.example.com");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("User-Agent", "Mozilla/5.0");
```
在上面的示例中,我们添加了 `User-Agent` 请求头。可以通过多次调用 `setRequestProperty` 方法来添加更多的请求头。
阅读全文