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")