- request.getRealPath("url");//虚拟目录映射为实际目录
- request.getRealPath("./");//网页所在的目录
- request.getRealPath("../");//网页所在目录的上一层目录
- 假定你的web application(web应用)名称为news,你的浏览器中输入请求路径:http://localhost:8080/uploading/load.jsp
- request.getContextPath() => /uploading
- request.getServletPath() => /load.jsp
- request.getRequestURL() => http://localhost:8080/uploading/load.jsp
- request.getRealPath("/") => F:\learn\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\uploading\
- 现在request.getRealPath("/") 这个方法已经不推荐使用了
- 可以使用
- ServletContext.getRealPath(java.lang.String) instead.
- request.getSession().getServletContext().getRealPath() 得到工程文件的实际物理路径,也就是绝对地址
从request中获取路径的方法总结
翻译
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
springmvc从request中获取body的数据的方法
从request中获取只需要3步骤即可,其中会用到dubbo的IOUtils,需要引入maven<de
springmvc body request body取值 json -
Android中获取文件路径的方法总结及对照
Android中获取文件路径
android 文件路径 缓存路径 下载路径