標籤:post 使用 string submit ram 應用服務 ppi sub 使用者
HttpServletRequest類既有getAttribute()方法,也由getParameter()方法,這兩個方法有以下的組件通過getParameter()方法來獲得請求參數,例如假定welcome.jsp和authenticate.jsp之間為連結關係,welcome.jsp中有以下代碼:
<a href="authenticate.jsp username=weiqin">authenticate.jsp a>
html 代碼
或者:
<form name="form1" method="post" action="authenticate.jsp">
請輸入使用者姓名:<input type="text" name="username"><input type="submit" name="Submit" value="提交">form>
在authenticate.jsp中通過request.getParameter("username")方法來獲得請求參數username:<% String username=request.getParameter("username"); %>
html 代碼
在authenticate.jsp中通過request.getParameter("username")方法來獲得請求參數username:
(3)當兩個Web組件之間為轉寄關係時,轉寄目標組件通過getAttribute()方法來和轉寄源組件共用 request範圍內的使用者名稱字,如何傳遞這一資料呢?先在authenticate.jsp中調用setAttribute()方法:
在hello.jsp中通過getAttribute()方法獲得使用者名稱字:Hello:
(4)從更深的資料,會從Web用戶端傳到Web伺服器端,代表HTTP請求資料。request.getParameter()方法返回String類型的資料只會存在於Web容器內部,在具有轉寄關係的共用資料。
getParameter得到的。或者是http://a.jsp id=123中的資料。
getAttribute則可以是對象。
getParameter()是擷取POST/GET傳遞的資料值;
getParameter:用於用戶端重新導向時,即點擊了連結或提交按扭時傳值用,即用於在用表單或url重新導向傳值時接收資料用。
getAttribute:用於伺服器端重新導向時,即在sevlet中使用了forward函數,或struts中使用了mapping.findForward。getAttribute只能收到程式用setAttribute傳過來的一塊記憶體中去,當你的記憶體中。這樣getAttribute就能取得你所設下的生命週期不一樣而已。
getParameter只是應用伺服器在分析你送上來的文本時,取得你設在表單或url重新導向時的值
HttpServletRequest的Attribute和Parameter區別