[求助]如何得到当前路径?
在servlet中如何得到文件当前的路径啊?如:当前路径是这样的:http://localhost:8084/test/index
要怎么样才可以得到这个整个路径啊?http://localhost:8084/test/index
这样也行:http://localhost:8084/test/
有没有人知道啊?谢谢!!
request.getRemoteAddr();//得到IP地址
request.getRemoteHost();//得到IP地址
request.getServletPath();//得到servlet的路径
request.getServerPort();//得到端口号
所有,可以说没有一个是用的着的,
不过request.getServletPath()这个可能还有点用
还是要谢谢