java创建get请求并设置请求头
时间: 2023-05-20 19:01:21 浏览: 87
可以使用 Java 的 HttpURLConnection 类来创建 GET 请求并设置请求头。以下是示例代码:
```
import java.net.HttpURLConnection;
import java.net.URL;
public class Main {
public static void main(String[] args) throws Exception {
URL url = new URL("http://example.com/api");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("User-Agent", "Mozilla/5.0");
int responseCode = con.getResponseCode();
System.out.println("Response code: " + responseCode);
}
}
```
在上面的代码中,我们首先创建一个 URL 对象,然后使用它来打开一个 HttpURLConnection 连接。我们设置请求方法为 GET,并设置 User-Agent 请求头。最后,我们发送请求并获取响应码。
阅读全文