jsp获取url路径的方法

Posted jiangfeilong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp获取url路径的方法相关的知识,希望对你有一定的参考价值。

如果你请求的URL是  http://localhost:8080/demo/Index.jsp

request.getScheme()  //输出:http
 
request.getServerName()  //输出: localhost
 
request.getServerPort() //输出: 8080
 
request.getContextPath()  //输出: /demo
 
request.getRequestPath() //输出: /Index.jsp
 
request.gerRequestURI() //输出:  /demo/Index.jsp
 
request.getRequestURL() //输出: http://localhost:8080/demo/Index.jsp
 
request.getRealPath("") //输出:D:\apache-tomcat-6.0.10\webapps\demo

 

以上是关于jsp获取url路径的方法的主要内容,如果未能解决你的问题,请参考以下文章

JSP中URL路径获取问题

如何在 Spring webapp 中的 JSP 中获取正确的当前 URL

jsp中获取路径信息的方法

jsp中怎么去掉url中自己的项目名字

js获取url 中的值,并跳转相应页面

Jsp获取Java的重定向赋值(String)