欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java 路径的故事

程序员文章站 2022-03-15 15:03:44
...

JSP中:${pageContext.request.contextPath}

         利用EL表达式,相当于http://localhost:8080/应用名称

Jave类中:

	String path = request.getScheme()
				        +"://"
				        + request.getServerName()
						+ ":" + request.getServerPort()
						+ request.getContextPath()

 

普通的类中:String root = 类名称.class.getResource("/").getPath();

显示编译时类的根路径

在application、junit中: //D:/eclipse_juno_4.2/workspace/ims_plat_new/build/classes/
在tomcat服务器中: //D:/apache-tomcat-6.0.35_ims_plat/webapps/ims_plat_new/WEB-INF/classes/
  

相关标签: JSP