jdk11中htpp请求
时间: 2024-01-16 13:19:09 浏览: 91
JDK 11 API中文帮助文档.rar
在JDK 11中,可以使用Java的内置类库来发送HTTP请求。以下是一个简单的示例代码,演示了如何在JDK 11中发送HTTP请求:
```java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpExample {
public static void main(String[] args) {
try {
// 创建URL对象
URL url = new URL("http://example.com");
// 打开连接
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置请求方法
connection.setRequestMethod("GET");
// 发送请求
int responseCode = connection.getResponseCode();
// 读取响应
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
StringBuilder response = new StringBuilder();
while ((line = reader.readLine()) != null) {
response.append(line);
}
reader.close();
// 输出响应结果
System.out.println("Response Code: " + responseCode);
System.out.println("Response Body: " + response.toString());
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
这个示例代码使用`java.net.HttpURLConnection`类来发送HTTP请求。它创建一个URL对象,打开连接,并设置请求方法为GET。然后,它发送请求并读取响应。最后,它输出响应的状态码和响应体。
阅读全文