获取web项目url

<%
String realPath1 = "http://"
		+ request.getServerName()
		+ ":"
		+ request.getServerPort()
		+ request.getServletPath().substring(0,
			request.getServletPath().lastIndexOf("/") + 1);
%>

 以上代码输出的内容为:http://localhost:8080/ qh/

 假如只要http://localhost:8080,就去掉最后一个request

你可能感兴趣的:(Web)