`
specialbrian
  • 浏览: 60903 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Request中getContextPath、getServletPath、getRequestUR

阅读更多

假定你的web application 名称为news,你在浏览器中输入请求路径:

http://localhost:8080/news/main/list.jsp

则执行下面向行代码后打印出如下结果:

1、 System.out.println(request.getContextPath());

打印结果:/news
   2、System.out.println(request.getServletPath());

打印结果:/main/list.jsp
3、 System.out.println(request.getRequestURI());

打印结果:/news/main/list.jsp
4、 System.out.println(request.getRealPath("/"));

打印结果:F:\Tomcat 6.0\webapps\news\test

JSP servlet API提供了getRealPath(path)方法,返回给定虚拟路径的真实路径,如果转换错误,则返回null。

分享到:
评论

相关推荐

    Request中getContextPath、getServletPath的区别

    2. 请求URL分解:在请求URL中,`getContextPath()`对应于URL的最前面部分,`getServletPath()`则是紧跟在`getContextPath()`后面的部分,可能还包括查询参数和片段标识符。 3. 应用场景:`getContextPath()`常用于...

    request.getcontextPath()_详解

    request.getcontextPath()是Java Web开发中常用的方法,用于获取当前Web应用程序的Context Path。Context Path是指Web应用程序的根目录,例如,一个名为“myapp”的Web应用程序,Context Path就是“/myapp”。 在 ...

    Request中getContextPath、getServletPath、getRequestURI、request.getRealPath的区别.doc

    ### Request中getContextPath、getServletPath、getRequestURI、request.getRealPath的区别 #### 一、概述 在Java Web开发中,对于HTTP请求处理时经常需要用到`HttpServletRequest`对象的方法来获取客户端请求的...

    java中request.getcontextPath()的意思.doc

    Java 中 request.getcontextPath() 的意思 request.getcontextPath() 是 Java 中一个非常重要的方法,它用于获取当前 Web 应用程序的 Context Path,换言之,就是获取当前项目的路径。在 Web 应用程序中,Context ...

    java中相对路径,绝对路径问题总结.doc

    在Java编程中,理解路径的概念至关重要,...在实际开发中,应当避免过于依赖于特定的文件系统结构,尽可能使用相对路径,并在必要时使用`request.getContextPath()`来获取Web应用的上下文路径,从而确保路径的正确性。

    数据库测试test.sql

    response.sendRedirect(request.getContextPath()+"/admin/login.jsp"); } public void register(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //...

    新闻推荐系统

    所有的jsp页面中的链接 添加 request.getContextPath() , 确保路径正确使用!! 代码中使用到了重定向等页面跳转,添加 request.getContextPath() , 确保路径正确使用!! dao 层中的接口不要随意修改,如果需要...

    基于java实现的用户兴趣标签的新闻推荐系统项目源码+数据库sql文件.zip

    所有的jsp页面中的链接 添加 request.getContextPath() , 确保路径正确使用!! 代码中使用到了重定向等页面跳转,添加 request.getContextPath() , 确保路径正确使用!! dao 层中的接口不要随意修改,如果需要...

    获取项目的相对路径和绝对路径

    正确地使用`request.getContextPath()`、`request.getServletPath()`、`request.getServletContext().getRealPath("/")`等方法可以帮助我们更好地管理Web应用中的文件路径问题。希望本文能对你有所帮助,在实际工作...

    Android代码-YuanNews

    所有的jsp页面中的链接 添加 request.getContextPath() , 确保路径正确使用!! 代码中使用到了重定向等页面跳转,添加 request.getContextPath() , 确保路径正确使用!! dao 层中的接口不要随意修改,如果需要...

    request的使用.txt

    String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> ``` 该语句用于获取当前网页的相对路径 例如: 访问...

    web开发中获得绝对路径的方法

    #### 方法2:组合使用`request.getScheme()`、`request.getServerName()`、`request.getServerPort()`和`request.getContextPath()` 这种方法可以构建出完整的URL,包括协议(如HTTP或HTTPS)、服务器名称、端口号...

    从HttpServletRequest获取各种路径总结

    out.println("getServletPath: " + request.getServletPath()); out.println(" "); %> ``` #### 四、其他获取路径的方法 除了上述通过`HttpServletRequest`获取路径的方式外,还可以在类中或Servlet中获取...

    网页视频播放插件

    最近做的一个项目,网页中需要播放视频。 这里包括 我自己做的java工程的jsp里的 demo 和 js插件包..。 不用下载其他播放插件,轻巧简捷 只需两步: 1.把代码全部复制,更改一下视频路径 2.把js包放入项目里。然后...

    jsp中fckeditor的几种使用,一看便知。

    <script type="text/javascript" src="<%= request.getContextPath() %>/resources/fckeditor/fckeditor.js"> ``` 这里的`request.getContextPath()`用于获取当前应用的根路径,确保JavaScript文件路径的正确。 ##...

    java开发,短信,验证

    <link href="<%=request.getContextPath()%>/formValidator1/style/validator.css" rel="stylesheet" type="text/css"/> ``` 这段代码设置了页面的元信息,并引入了必要的CSS样式表以及图标文件。 #### 4. ...

    JSP.rar_request jsp

    **请求路径信息**:`request.getRequestURI()`方法可以获取客户端请求的完整URI,而`request.getContextPath()`则返回Web应用的上下文路径,`request.getServletPath()`返回请求的Servlet路径。 **会话管理**:...

    jsp中获得路径的两种方法和获得url路径的方法(推荐).docx

    在JSP中,我们可以使用`request.getContextPath()`方法来获取当前应用的上下文路径,即项目的根路径。例如,`<a href="<%=request.getContextPath()%>/XXX.jsp">` 会生成一个以项目根路径开头的链接,即使项目被部署...

    开发技术使用指南

    - `<img src="<%=request.getContextPath()%>/columnTemplate/activity/2013qm/images/banner.png" alt=""/>`:这行代码使用JSP脚本动态生成了一个`<img>`标签,其中`src`属性指定了图片文件的路径,通过`request....

Global site tag (gtag.js) - Google Analytics