通过java代码调用这个接口http://10.254.7.226:30210/v1/user/check?name={name}
时间: 2023-10-04 08:09:55 浏览: 82
JAVA发送http get/post请求,调用http接口、方法详解
5星 · 资源好评率100%
你可以使用Java中的HttpURLConnection类来调用该接口。下面是一个示例代码,可以将{name}替换为具体的用户名:
```java
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class ApiTest {
public static void main(String[] args) {
try {
String name = "your_username"; // 将your_username替换为具体的用户名
URL url = new URL("http://10.254.7.226:30210/v1/user/check?name=" + name);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Content-Type", "application/json");
if (conn.getResponseCode() != 200) {
throw new RuntimeException("Failed : HTTP error code : " + conn.getResponseCode());
}
BufferedReader br = new BufferedReader(new InputStreamReader((conn.getInputStream())));
String output;
System.out.println("Output from Server .... \n");
while ((output = br.readLine()) != null) {
System.out.println(output);
}
conn.disconnect();
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
运行该代码后,会输出API的返回结果。注意,这里的示例代码只是简单的调用API,并没有对返回结果进行处理。实际使用中,你可能需要根据API返回的内容进行不同的处理。
阅读全文