gpt4 book ai didi

java - 使用 HTTP Get 请求的 RESTClient

转载 作者:行者123 更新时间:2023-12-01 14:26:25 25 4
gpt4 key购买 nike

我正在尝试编写一个使用 HTTP GET 方法的 JSON 客户端,并且得到了 500 的响应。我尝试过的代码如下,是否有任何错误?我试图设置的请求参数是entityName=Nila 和parentEntity=500000001 作为参数。

URL url = new URL("http://192.168.210.74:9763/services/testEntityService?entityName=Nila&parentEntity=500000001");



HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setRequestProperty("Accept", "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 (MalformedURLException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

}

最佳答案

这是一个内部服务器错误,是的,问题出在服务器端。

关于java - 使用 HTTP Get 请求的 RESTClient,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17152226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com