>>分享Java Web开发技术,并且对孙卫琴的《Tomcat与Java Web开发技术详解》提供技术支持 书籍支持  卫琴直播  品书摘要  在线测试  资源下载  联系我们
发表一个新主题 开启一个新投票 回复文章 您是本文章第 25016 个阅读者 刷新本主题
 * 贴子主题:  从HttpServletRequest对象中获取各种路径信息 回复文章 点赞(0)  收藏  
作者:Jacky    发表时间:2020-03-30 23:26:50     消息  查看  搜索  好友  邮件  复制  引用


从Request对象中可以获取各种路径信息,以下例子:

假设请求的页面是index.jsp,项目是WebDemo,则在index.jsp中获取有关request对象的各种路径信息如下
                        
                   String path = request.getContextPath();                  

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

                   String remoteAddress=request.getRemoteAddr();                  

                   String servletPath=request.getServletPath();                  

                   String realPath=request.getRealPath( "/");                  

                   String remoteUser=request.getRemoteUser();                  

                   String requestURI=request.getRequestURI();                  

                   out.println( "path:"+path+ "<br>");                  

                   out.println( "basePath:"+basePath+ "<br>");                  

                   out.println( "remoteAddr:"+remoteAddress+ "<br>");                  

                   out.println( "servletPath:"+servletPath+ "<br>");                  

                   out.println( "realPath:"+realPath+ "<br>");                  

                   out.println( "remoteUser:"+remoteUser+ "<br>");                  

                   out.println( "requestURI:"+requestURI+ "<br>");                  

                   结果:                  

                   path:/WebDemo                  

                   basePath:http: //localhost:8683/WebDemo/                  

                   remoteAddr: 127.0. 0.1                  

                   servletPath:/index.jsp                  

                   realPath:D:\apache-tomcat- 6.0. 13\webapps\WebDemo\                  

                   remoteUser: null                  

                   requestURI:/WebDemo/index.jsp                  
                
从上不难看出request各个对应方法所代表的含义

从request获取各种路径总结:

                                                     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)                    

                   request.getSession().getServletContext().getRealPath() 得到工程文件的实际物理路径,也就是绝对地址                  

                        
HttpServletRequest 的以下两种方法都只能得到不包含参数的请求url

                         String url = request.getRequestURI();                    

                         StringBuffer url_buffer = request.getRequestURL();                  

HttpServletRequest 的以上两种方法的区别如下:                  

                    1 前者返回相对路径,后者返回完整路径                  

                    2 前者返回string ,后者返回stringbuffer                  

得到完整请求url可以通过如下方法,getQueryString()得到的是url后面的参数串,和前者相加就是带参数的请求路径了                  

                    String queryString = request.getQueryString();                  

                    String fullPath = url + queryString;    // 或者是url_buffer.toString()+queryString;                  

                                          


----------------------------
原文链接:https://www.cnblogs.com/zhwl/p/3625360.html

程序猿的技术大观园:www.javathinker.net



[这个贴子最后由 flybird 在 2020-03-30 23:26:50 重新编辑]
  Java面向对象编程-->面向对象开发方法概述之开发思想(上)
  JavaWeb开发-->访问数据库(Ⅱ)
  JSP与Hibernate开发-->Java应用分层架构及软件模型
  Java网络编程-->通过JavaMail API收发邮件
  精通Spring-->Vue组件开发基础
  Vue3开发-->Vue指令
  HTTP 正文类型 content-type 汇总
  JSP 自动刷新
  JSP HTTP 状态码
  JSP 语法
  Servlet 发送电子邮件
  Servlet 生命周期
  apache做反向代理服务器
  读《Tomcat与JavaWeb开发技术详解》的笔记
  JSP 到数据库查询的数据 分页显示
  JSP2和Servlet3的一些新特性
  使用异步处理机制改进Web应用性能
  SOAP协议介绍
  在Tomcat9中配置HTTP/2
  Apache Ant 1.9.12 和 1.10.4 发布,解压安全修复
  转:Tomcat配置手册
  更多...
 IPIP: 已设置保密
楼主      
1页 0条记录 当前第1
发表一个新主题 开启一个新投票 回复文章


中文版权所有: JavaThinker技术网站 Copyright 2016-2026 沪ICP备16029593号-2
荟萃Java程序员智慧的结晶,分享交流Java前沿技术。  联系我们
如有技术文章涉及侵权,请与本站管理员联系。