码迷,mamicode.com
首页 > Web开发 > 详细

jsp中的basePath,获取应用的路径

时间:2015-10-15 18:35:10      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

1
2
3
4
5
String path = request.getContextPath(); 
   
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"
   
<base href="<%=basePath%>"

  

request.getSchema()可以返回当前页面使用的协议,http 或是 https;

request.getServerName()可以返回当前页面所在的服务器的名字;

request.getServerPort()可以返回当前页面所在的服务器使用的端口,就是80;

request.getContextPath()可以返回当前页面所在的应用的名字;

 

jsp中的basePath,获取应用的路径

标签:

原文地址:http://www.cnblogs.com/likeju/p/4882949.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!