JAVA-JSP内置对象之request对象的其他方法
相关资料:
《21天学通Java Web开发》
request对象的其他方法
1.request对象除了可以用来获得请求参数,还可以用来获得HTTP标头及其他信息。
方法 返回值 方法说明
getHeader(String name) String 获得指定标题名称为name的标头
getHeaderName() Enumeration 获得所有的标头名称
getIntHeader(String name) int 获得标题名称的name的标头,内容以整数类型返回
getDateHeader(String name) long 获得标题名称的name的标头,内容以日期类型返回
getCookies() Cookie 获得相关的cookies
getContextPath() String 获得Context的路径
getMethod() String 获得客户商机的提交方式
getProtocol String 获得使用的HTTP协议
getQueryString() String 获得请求的字符串
getRequestedSeesionID String 获得客户端的Session ID
getRequestURI() String 获得请求的URL
getRemoteAddr() String 获得客户端IP地址
getRemoteHost() String 获得客户端的主机名称
getRmotePort() int 获得客户端主机端口号
getRemoteUsre() String 获得客户端名称
欢迎关注我,一起进步!扫描下方二维码即可加我