get请求调用接口的java代码
时间: 2024-05-14 14:09:34 浏览: 54
Java 调用Http Rest接口 例子说明
4星 · 用户满意度95%
当使用Java进行GET请求调用接口时,可以使用Java的HttpURLConnection类来实现。以下是一个示例代码:
```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class GetRequestExample {
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();
// 读取响应内容
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());
// 关闭连接
connection.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
这段代码通过创建一个URL对象,并使用HttpURLConnection类打开连接。然后设置请求方法为GET,并发送请求。获取响应代码和响应内容后,可以对其进行处理。最后关闭连接。
阅读全文