java调用HttpURLConnection
时间: 2023-11-02 11:56:59 浏览: 79
可以使用 Java 中的 HttpURLConnection 类来进行 HTTP 请求。以下是一个简单的示例:
```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpExample {
public static void main(String[] args) {
try {
URL url = new URL("http://www.example.com");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置请求方法
connection.setRequestMethod("GET");
// 发送请求
connection.connect();
// 读取响应内容
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.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
以上示例中,我们使用 HttpURLConnection 类来发送 GET 请求,并读取响应内容。你也可以通过设置请求头、请求体等来发送 POST 请求或其他类型的请求。
阅读全文