java调用webserver 服务端接口
时间: 2023-10-10 21:09:01 浏览: 96
要调用Web服务端接口,可以使用Java的HTTP客户端来发送HTTP请求。以下是一个简单的示例,其中使用Java的HttpURLConnection类发送GET请求:
```java
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class HttpExample {
public static void main(String[] args) {
try {
URL url = new URL("http://example.com/api/getdata");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
String line;
StringBuffer response = new StringBuffer();
while ((line = in.readLine()) != null) {
response.append(line);
}
in.close();
System.out.println(response.toString());
} catch (Exception e) {
System.out.println("Error: " + e.getMessage());
}
}
}
```
在这个例子中,我们使用HttpURLConnection类创建一个GET请求,并将响应读入StringBuffer对象中。你需要将URL替换成你要调用的服务端接口的URL。如果你需要发送POST请求,可以修改请求方法为POST,并设置请求参数。
阅读全文