编程语言
首页 > 编程语言> > JavaWeb项目里面的路径获取方法总结

JavaWeb项目里面的路径获取方法总结

作者:互联网

https://www.cnblogs.com/AndrewXu/p/6801004.html

request.getRealPath不推荐使用request.getRealPath("") 这个方法已经不推荐使用了

 

request.getRealPath不推荐使用request.getRealPath("") 这个方法已经不推荐使用了,那代替它的是什么方法 Deprecated. As of Version 2.1 of the Java Servlet API, use ServletContext.getRealPath(java.lang.String) instead. request.getSession().getServletContext().getRealPath() 得到站点的绝对地址

 

如request.getSession().getServletContext().getRealPath(File.separator) 得到项目的绝对路径如:

 

D:\ProgramFiles\apache-tomcat-6.0.33\webapps\wt4\

 

request.getSession().getServletContext().getRealPath(“/updload/video/”) 得到项目的绝对路径

 

D:\ProgramFiles\apache-tomcat-6.0.33\webapps\wt4\updload\video\

 


 

获取class文件路径

servletcontext.getRealPath() 方法已经不建议使用了

原则:基本上就是尽量使用j2ee规范中的各层次classloader来获取资源,而不是试图去找文件的绝对路 径 方法:调用this.getClass().getClassLoader().getResource("/").getPath(); 获取到classes目录的全路径

标签:getSession,JavaWeb,路径,request,getServletContext,getRealPath,获取,方法
来源: https://www.cnblogs.com/linus-tan/p/11132234.html