我正在尝试使用以下代码从 android 访问 RESTful 网络服务。
ClientConfig config= new DefaultClientConfig();
Client client=Client.create(config);
WebResource service=client.resource("http://localhost:8085/JerseyTest/jersey/test/testing123");
但我得到以下异常。
07-22 16:53:15.450: E/AndroidRuntime(1491): 由: com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: 无法连接到 localhost/127.0.0.1 (端口 8085) :连接失败:ECONNREFUSED(连接被拒绝)
但是该网址在浏览器中运行良好,我也尝试关闭防火墙。任何人都可以帮助我吗?