我想问你一个关于这个例外的问题。我需要更多信息,但我找不到任何东西。实际上这个测试我收到了这个例外:
com.sun.jersey.api.client.ClientHandlerException:java.net.ConnectException:连接超时:connect
如果我将该网址放入浏览器,该网址也存在并检索我的数据。 ClientResponse行中引发异常。请提供更多信息。实际上我使用代理与服务器建立连接,但我的数据是好的,在我的project.properties中。知道为什么会这样吗?我正在与远程服务器进行通信,而不是在localhost中进行通信。
Client client = Client.create();
WebResource webResource = client
.resource("http://someurl");
String input= "{'test'}";
ClientResponse response = webResource.type("application/json")
.post(ClientResponse.class, input);