Java设置自定义请求头
时间: 2023-10-30 18:05:37 浏览: 136
爬虫:设置Request Header(请求头)
5星 · 资源好评率100%
可以使用 Java 的 HttpURLConnection 类来设置自定义请求头。以下是一个示例代码:
```java
URL url = new URL("https://example.com/api");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
// 设置自定义请求头
conn.setRequestProperty("Authorization", "Bearer your_token_here");
conn.setRequestProperty("User-Agent", "My Java App");
int responseCode = conn.getResponseCode();
```
在上面的代码中,我们使用 `setRequestProperty` 方法来设置自定义请求头。第一个参数是请求头的名称,第二个参数是请求头的值。
这里我们设置了 `Authorization` 和 `User-Agent` 两个请求头。你可以根据自己的需要添加更多的请求头。最后,我们通过 `getResponseCode` 方法获取响应的状态码。
阅读全文