java调第三方接口
时间: 2023-11-12 13:58:00 浏览: 69
java调用第三方的短信接口
4星 · 用户满意度95%
要调用第三方接口,可以使用Java中的HttpURLConnection或者HttpClient等工具类来发送HTTP请求,并获取响应结果。具体步骤如下:
1. 创建URL对象,指定要访问的接口地址。
2. 打开连接,设置请求方法(GET/POST等)、请求头、请求参数等。
3. 发送请求,获取响应结果。
4. 解析响应结果,获取需要的数据。
以下是一个简单的示例代码:
```java
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class ApiCaller {
public static void main(String[] args) {
try {
// 创建URL对象
URL url = new URL("http://api.example.com/getData");
// 打开连接
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Content-Type", "application/json");
// 发送请求
int responseCode = conn.getResponseCode();
System.out.println("Response Code : " + responseCode);
// 获取响应结果
BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
// 解析响应结果
System.out.println(response.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
阅读全文