当前位置: 技术问答>java相关
index.html (系统找不到指定的文件。)
来源: 互联网 发布时间:2017-03-17
本文导语: ?????????index.html (系统找不到指定的文件。) 请问这个文件要放在哪里或者说要怎么设置?tomcat+win2000server | 在tomcat/conf/web.xml 下有设置不用敲index.jsp就自动找到。 index.jsp放在webapps下就可...
?????????index.html (系统找不到指定的文件。)
请问这个文件要放在哪里或者说要怎么设置?tomcat+win2000server
|
在tomcat/conf/web.xml
下有设置不用敲index.jsp就自动找到。
index.jsp放在webapps下就可以了
下有设置不用敲index.jsp就自动找到。
index.jsp放在webapps下就可以了
|
要和你这个jsp放在同一个目录,或者写绝对路径
String nameOfTextFile="C:\index.html";
String nameOfTextFile="C:\index.html";
|
文件相对路径出问题了
|
String nameOfTextFile="./index.html";
|
要绝对路径,例如 :
String nameOfTextFile="D\web_file\index.html";
String nameOfTextFile="D\web_file\index.html";