getAttribute(String name):返回以name为名字的属性的值,不存在返回null
getAttributeNames():返回请求中所有可用的属性名称,没有属性,返回一个空的枚举集合
removeAttribute(String name):移除请求中名字为name的属性
setAttribute(String name, Object o): 请求保存名字为name的属性,第二个参数为null,那么相当于removeAttribute。
getCharacterEncoding():请求正文使用的字符编码集。没有指定则返回null
getContextType():请求正文的MIME类型。不知道返回null
getInputStream():返回一个输入流
getParameter(String name):返回请求中name参数的值,如果有多个值,则返回第一个值。
getParameterNames():请求包含的所有的参数的名字。没有请求参数,返回空的枚举集合。
getParameterValues(String name):返回name参数所有的值。
时间: 2024-10-07 05:02:09