java 调用 restful 接口
时间: 2023-08-11 17:08:38 浏览: 101
restful接口
Java 调用 RESTful 接口可以使用 Java 的HttpClient库或者第三方库如OkHttp等。
以下是使用Java HttpClient库的示例代码:
```java
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
public class RestClient {
public static void main(String[] args) throws Exception {
CloseableHttpClient httpClient = HttpClients.createDefault();
HttpGet httpGet = new HttpGet("http://localhost:8080/api/users/1");
CloseableHttpResponse response = httpClient.execute(httpGet);
String responseBody = EntityUtils.toString(response.getEntity());
System.out.println(responseBody);
httpClient.close();
}
}
```
这个示例代码使用了Apache HttpClient库,发送了一个GET请求到http://localhost:8080/api/users/1的RESTful接口,并且打印了响应的body。
你需要根据你的具体需求,修改代码中的请求类型、请求参数、请求头等。
阅读全文