HttpRequest在访问的时候,经常用的几个容易混淆的方法。从网上找到的一个比较容易理解的例子。
getContextPath | Context路径 |
getServletPath | Servlet路径 |
getPathInfo | 扩展路径 |
getPathTranslated | 扩展物理路径 |
getRequestURL | 请求时候的URL |
getRequestURI | Context路径到扩展路径的字符串 |
实例如下:
还有就是getScheme取得是http,https的字符串。
getServerName:取得服务器domain名字
getServerPort:取得端口号。http是80。 https是443