我正在使用tomcat 7
Java EE eclipse 我还为服务器部分编写了代码。在 android 中,我还创建了一个项目并运行它并使用服务器部分 Url 的 HttPGet,但我的 getRequest 无法正常工作。
我的服务器正在那个 URL 中工作
http://localhost:8080/dhoom/index.jsp
在我的android项目中,我这样使用:
String URL = "http://10.0.2.2:8080/dhoom/index.jsp";
HttpClient user = new DefaultHttpClient();
HttpGet getRequest = new HttpGet(URL);
getRequest
不工作需要帮助提前谢谢。