jsp中各种url的获取方法
分类:Jsp
来源:网络
时间:2017-12-15 22:52:52
1、获取项目名称,如:myproject
String path = request.getContextPath();
2、获取项目根目录地址,如:http://localhost:8080/myproject/
String basePath = request.getScheme()+"://"+request.getServerName()
+":"+request.getServerPort()+path+"/";
3、获取当前访问的文件所在目录,如http://localhost:8080/myproject/book/
String nowPath = basePath +
request.getServletPath().substring(0,request.getServletPath().lastIndexOf("/")+1);
4、获取当前访问文件,如http://localhost:8080/myproject/book/book.jsp
String nowPath = basePath + request.getServletPath();
- 默认分类(20)
- J2EE(25)
- Java(56)
- PHP(55)
- SEO(10)
- 网页设计(20)
- 网站建设(37)
- 数据库(7)
- JavaScript(17)
- JQuery(6)
- MySQL(20)
- SQL Server(6)
- Access(1)
- Oracle(6)
- office(6)
- Dreamweaver(4)
- Photoshop(12)
- Flash(9)
- Fireworks(13)
- CSS(14)
- HTML(4)
- .NET(7)
- ASP(2)
- DB2(1)
- Ajax(2)
- Linux(12)
- Struts(7)
- Hibernate(8)
- Spring(2)
- Jsp(22)
- Asp(8)
- C#(3)
- C++(1)
- 网络安全(5)
- 软件工程(7)
- XML(1)
- English(2)
- 计算机等级考试(2)
- 计算机病毒(4)
- 个人日志(76)
- 互联网(15)
- ActionScript(10)
- Android(3)
- 数据结构与算法(1)
- 游戏策略(3)
- 美文翻译(2)
- 编程开发(19)
- 计算机应用(4)
- 计算机(10)
- Unity3d(6)
- 其他(1)
- egret(1)