当前位置:主页 > 查看内容

jsp获取url路径的方法分析

发布时间:2021-05-14 00:00| 位朋友查看

简介:本文实例讲述了jsp获取url路径的方法。分享给大家供大家参考,具体如下: 如果你请求的URL是 http://localhost:8080/demo/Index.jsp request.getScheme() //输出:httprequest.getServerName() //输出: localhostrequest.getServerPort() //输出: 8080requ……

本文实例讲述了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程序设计有所帮助。


本文转载自网络,原文链接:https://m.jb51.net/article/90971.htm
本站部分内容转载于网络,版权归原作者所有,转载之目的在于传播更多优秀技术内容,如有侵权请联系QQ/微信:153890879删除,谢谢!
上一篇:jsp页面常用的查询及显示方法分析 下一篇:没有了

推荐图文


随机推荐