iLeichun

当前位置: 首页 > Jsp

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();


更多