用eclipse写 jsp include file 路径问题

用eclipse写 jsp include file 路径问题,第1张

加上这些试试,在<html>标签外部(上面)加上
<%
String path = requestgetContextPath();
String basePath = requestgetScheme()+"://"+requestgetServerName()+":"+requestgetServerPort()+path+"/";
%>
然后在<head>标签内部加上
<base href="<%=basePath%>">

package compackage2;
import javaioFile;
public class T5 {
public static void main(String[] args) {
T test=new T();
testget();
}
}
class T
{
public void get()
{
File file = new File(thisgetClass()getResource("/")getPath());
Systemoutprintln(filetoString());
}
}

工具栏里点window----然后最下面的那个preferences----左上角输入startup就出来了,然后后面第一项选上就是那个promptforworkspaceonstartup这个,然后ok重启Myeclipse就会让你选择工作空间,然后可以更改了就,希望你能满意


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/10480147.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-09
下一篇 2023-05-09

发表评论

登录后才能评论

评论列表(0条)

保存