java发送请求设置请求头
时间: 2023-11-18 08:45:34 浏览: 286
httpclient用法,发送get和post请求,设置header
5星 · 资源好评率100%
通过Java后台设置请求头部,可以使用`setRequestProperty`方法来修改或添加请求头信息。例如,下面是一个示例代码:
```
URL url = new URL("http://example.com/api");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET"); // 设置请求方式为GET
connection.setRequestProperty("Content-Type", "application/json"); // 设置请求头部信息,例如Content-Type为application/json
connection.setRequestProperty("Authorization", "Bearer token"); // 设置授权信息
// 发送请求并获取响应
int responseCode = connection.getResponseCode();
```
在上述示例中,我们使用`setRequestProperty`方法来设置请求头部信息,如Content-Type和Authorization。你可以根据你的需求修改或添加其他请求头部信息。
阅读全文