6

我正在使用 Android 中的应用程序。它使用我 PC 中的本地主机服务器来获取一些数据。但是我在运行后在 LotCat 中收到这样的警告。

02-07 15:51:48.965: W/System.err(10339): com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: 无法连接到 localhost/127.0.0.1(端口 9090):连接失败:ECONNREFUSED(连接被拒绝)

我正在使用真实设备连接到 PC 并运行我的应用程序。android:permission:internet已在 AndroidManifest.xml 中启用。我使用的真实设备是带有Androidv4.2.2的hTC mobile。我没有使用 asyncTask 来调用这个 web 服务。谁能帮帮我吗....

4

1 回答 1

0

The URL should be 127.0.0.1:9090/URI.

Furthermore ensure that you are on the same network as your server i.e make sure you are on the same wifi connection on the device as the server is on.

If this does not work the port may already be in use and you should try another port such as 4444.

于 2014-12-17T05:38:59.803 回答