1. 程式人生 > >jsp request物件

jsp request物件

getParameter( ) :返回name指定引數的引數值

String[]  getParameterValues(String name)    :返回包含引數name的所有值的數值

getAttribute(Sting name)  :返回指定屬性的值  例如 request.getAttribute("password")  獲取密碼

setAttribute(string Object) :儲存此請求的屬性值 例如 request.setAttribute("password","123456")  設定密碼

setCharacterEncoding :防止從客戶端輸入的中文產生亂碼   設定為request.setCharacterEncoding("utf-8")