java 各种读取_Java获取各种路径

JavaWeb中获取各种路径

假设有如下结构项目:

ea205e78d9cea735fd4114554b5ace98.png

/test/index.jsp:

String path = request.getContextPath();

String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

// basePath:http://localhost:8088/12306/

System.out.println("basePath:" + basePath);

// getContextPath:/12306

System.out.println("getContextPath:" + request.getContextPath());

// getServletPath:/test/index.jsp

System.out.println("getServletPath:" + request.getServletPath());

// /12306/test/index.jsp

System.out.println("getRequestURI:" + request.getRequestURI());

// http://localhost:8088/12306/test/index.jsp

System.out.println("getRequestURL:" + request.getRequestURL());

// getQueryString:?a=1&b=2

System.out.println("getQueryString:" + request.getQueryString());

// getRealPath:F:\Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp12\wtpwebapps\12306

System.out.println("getRealPath:" + getServletContext().getRealPath(""));

// getRealPath:F:\Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp12\wtpwebapps\12306\

System.out.println("getRealPath:" + getServletContext().getRealPath("/"));

// getRealPath:F:\Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp12\wtpwebapps\12306\home.jsp

System.out.println("getRealPath:" + getServletContext().getRealPath("home"));

// getRealPath:F:\Workspace\.metadata\.plugins\org.eclipse.wst.server.core\tmp12\wtpwebapps\12306\test\index.jsp

// 此地址即使不存在也能返回正确的拼接地址

System.out.println("getRealPath:" + getServletContext().getRealPath("/test/index.jsp"));

// /F:/Workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp12/wtpwebapps/12306/WEB-INF/classes/

System.out.println(this.getClass().getClassLoader().getResource("/").getPath());

// /F:/Workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp12/wtpwebapps/12306/WEB-INF/classes/test.txt

// 注意,此地址如果不存在则报错

System.out.println(this.getClass().getClassLoader().getResource("/test.txt").getPath());

%>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值