java如何删除header中请求头
时间: 2024-06-08 21:08:49 浏览: 288
java swagger ui 添加header请求头参数的方法
在 Java 中,可以使用 HttpURLConnection 类来发送 HTTP 请求并设置请求头。要删除请求头,可以使用 `removeRequestProperty(String key)` 方法,其中 `key` 参数是要删除的请求头的名称。
例如,下面的代码演示了如何删除名为 "User-Agent" 的请求头:
```java
URL url = new URL("https://example.com");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
// 设置请求头
conn.setRequestProperty("User-Agent", "Mozilla/5.0");
// 删除请求头
conn.removeRequestProperty("User-Agent");
```
注意,如果请求头不存在,`removeRequestProperty` 方法不会产生任何影响。
阅读全文