在做一个Android应用需要访问本机的Tomcat时,用到了
URL url = new URL("http://192.168.1.104:8080/mp3app/resources.xml");
URLConnection conn = url.openConnection();
InputStream is = conn.getInputStream();
一直连接超时,不能访问服务器上的资源。后来经过测试发现,URL中的ip不能用localhost或者127.0.0.1,本机的防火墙也必须关闭,之后连接正常。