当前位置: 技术问答>java相关
Tomcat下在Applet里调用Servlet怎么写URL?在线给分,急!
来源: 互联网 发布时间:2015-05-30
本文导语: 运行环境:Tomcat/4.0.3 URL surl = new URL("http://localhost:8080/servlet/Ss"); 其中Ss.class位于D:TomcatwebappsexamplesWEB-INFclasses里 但发生错误java.io.FileNotFoundException: http://localhost:8080/servlet/Ss | 试试new URL("http...
运行环境:Tomcat/4.0.3
URL surl = new URL("http://localhost:8080/servlet/Ss");
其中Ss.class位于D:TomcatwebappsexamplesWEB-INFclasses里
但发生错误java.io.FileNotFoundException: http://localhost:8080/servlet/Ss
URL surl = new URL("http://localhost:8080/servlet/Ss");
其中Ss.class位于D:TomcatwebappsexamplesWEB-INFclasses里
但发生错误java.io.FileNotFoundException: http://localhost:8080/servlet/Ss
|
试试new URL("http://localhost:8080/examples/servlet/Ss");