欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jsp获取url路径的方法分析

程序员文章站 2023-11-17 21:14:58
本文实例讲述了jsp获取url路径的方法。分享给大家供大家参考,具体如下: 如果你请求的url是  http://localhost:8080/demo/ind...

本文实例讲述了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

上面几个我都验证过了,除了request.getrequestpath() 无法使用外(估计这个函数已经被废弃掉了吧),其它的显示都正确。

希望本文所述对大家jsp程序设计有所帮助。