gpt4 book ai didi

java - REST HttpURL 连接

转载 作者:搜寻专家 更新时间:2023-11-01 03:53:15 26 4
gpt4 key购买 nike

我正在开发一个 REST 客户端,使用 HttpURLConnection 试验 tinkerpop 数据库。

我正在尝试发送 'GET - CONNECT'。现在我明白(从一些网络研究中)如果我使用 doOutput(true) 即使我 setRequestMethod 'GET' 'client' 也会是 'POST' 因为 POST 是默认设置(好吧?)但是当我注释掉 doOutput(true) 时我得到这个错误:

java.net.ProtocolException: cannot write to a URLConnection if doOutput=false - call setDoOutput(true)
at sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:995)
at RestContent.handleGetConnect(RestContent.java:88)

at RestClient.main(RestClient.java:42)`

这里是我用 setUseDoOutPut() 尝试过各种选项的通信代码片段。

//connection.setDoInput(true);
connection.setUseCaches (false);
connection.setDoOutput(true);
connection.setAllowUserInteraction(false);

// set GET method
try {
connection.setRequestMethod("GET");
} catch (ProtocolException e1) {
e1.printStackTrace();
connection.disconnect();
}

在另一种情况下,connection.setRequestMethod("GET") 出现异常。有什么提示吗?

最佳答案

以下代码工作正常:URL 是一个支持 GET 操作的 Rest URL。

    HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
//connection.setDoOutput(true);
InputStream content = (InputStream) connection.getInputStream();
BufferedReader in = new BufferedReader(new InputStreamReader(content));
String line;
while ((line = in.readLine()) != null) {
System.out.println(line);
}

关于java - REST HttpURL 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18198953/

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