我在网络应用程序中工作。http://localhost:8080/examples/README.txt
使用的服务器是 Apache Tomcat 6。我在运行服务器后尝试从 mylocalhost 访问资源。但我无法访问显示在 Eclipse 中找不到错误消息文件的资源。但是如果我在链接上按 ctrl+左键单击,资源就会在 Eclipse 工作区中打开。我无需通过服务器即可访问的相同资源,即转到路径C:\Program Files (x86)\apache-tomcat-6.0.35\bin
并单击Startup.bat
。通过这种方式,我可以打开文件。我可以知道不通过 Eclipse 访问这些资源的原因是什么吗?
url = new URL("http://localhost:8080/examples/README.txt");
con = url.openConnection(); // open the url connection.
dis = new DataInputStream(con.getInputStream());