HttpServletRequest類別既有getAttribute()方法,也有getParameter()方法,這兩個方法有以下差異:
1、HttpServletRequest類別有setAttribute()方法,而沒有setParameter()方法;
2.當兩個Web元件之間為連結關係時,被連結的元件透過getParameter()方法來獲得請求參數;
例如,假定welcome.jsp和authenticate.jsp之間為連結關係,welcome.jsp中有以下程式碼:
複製代碼代碼如下:
<a href="authenticate.jsp?username=qianyunlai.com">authenticate.jsp </a>
//或者:
<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"); %>
3.當兩個Web元件之間為轉發關係時,轉發目標元件透過getAttribute()方法來和轉發來源元件共享request範圍內的資料。
假定authenticate.jsp和hello.jsp之間為轉發關係。 authenticate.jsp希望向hello.jsp傳遞目前的使用者名字,如何傳遞這項資料呢?先在authenticate.jsp中呼叫setAttribute()方法:
複製代碼代碼如下:
<%
String username=request.getParameter("username");
request.setAttribute("username",username);
%>
<jsp:forward page="hello.jsp" />
在hello.jsp中透過getAttribute()方法取得使用者名字:
複製代碼代碼如下:
<% String username=(String)request.getAttribute("username"); %>
Hello: <%=username %>
4、request.getAttribute 回傳的是Object,request.getParameter 回傳的是String。