java 模拟curl 代码实现
时间: 2023-10-12 21:04:44 浏览: 129
curl 代码示例
以下是一个简单的示例代码,用于使用Java模拟Curl发送GET请求:
```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class CurlSimulator {
public static void main(String[] args) {
try {
// 创建URL对象
URL url = new URL("http://example.com/api/endpoint");
// 打开连接
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
// 设置请求方法为GET
connection.setRequestMethod("GET");
// 发送请求并获取响应状态码
int responseCode = connection.getResponseCode();
// 根据响应状态码判断请求是否成功
if (responseCode == HttpURLConnection.HTTP_OK) {
// 读取响应内容
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());
} else {
System.out.println("请求失败,错误码:" + responseCode);
}
// 关闭连接
connection.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
这段代码通过创建一个URL对象,打开连接并设置请求方法为GET,发送请求并获取响应。如果响应状态码为200(HTTP_OK),则读取响应内容并输出。否则,输出错误信息。你可以根据自己的需求进行修改和扩展。
阅读全文