代码
时间: 2023-07-02 16:21:25 浏览: 43
以下是使用HTTP协议进行接口调用的示例代码:
```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class ApiClient {
public static void main(String[] args) {
try {
// 创建URL对象
URL url = new URL("http://localhost:8080/api/user?id=123");
// 打开HTTP连接
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
// 设置HTTP请求方法
conn.setRequestMethod("GET");
// 设置HTTP请求头
conn.setRequestProperty("Content-Type", "application/json");
// 发送HTTP请求
conn.connect();
// 获取HTTP响应码
int responseCode = conn.getResponseCode();
// 如果HTTP响应码为200,则表示请求成功
if (responseCode == 200) {
// 获取HTTP响应体
BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
// 处理HTTP响应结果
System.out.println(response.toString());
} else {
// 处理HTTP响应错误
System.out.println("HTTP Error Code: " + responseCode);
}
// 断开HTTP连接
conn.disconnect();
} catch (Exception e) {
// 处理异常
e.printStackTrace();
}
}
}
```
以上代码实现了一个简单的HTTP请求,并输出了HTTP响应结果。其中,通过设置请求方法、请求头和请求参数来发送HTTP请求,并使用输入流读取HTTP响应体。在实际应用中,可以根据具体的业务需求,对HTTP请求和响应进行更加详细的处理。
阅读全文