HttpServletRequest類既有getAttribute()方法,也由 getParameter()方法,這兩個方法有如下區別:java
(1)HttpServletRequest類有setAttribute()方法,而 沒有setParameter()方法web
(2)當兩個Web組件之間爲連接關係時,被連接的組件經過 getParameter()方法來得到請求參數,例如假定welcome.jsp和authenticate.jsp之間爲連接關 系,welcome.jsp中有如下代碼:服務器
<a href="/authenticate.jsp?username=weiqin">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")方法來得到請求參數usernamejsp
<input type="submit" name="Submit" value="提交"> ;/form>
(3)當兩個Web組件之間爲轉發關係時,轉發目標組件經過 getAttribute()方法來和轉發源組件共享request範圍內的數據。假定authenticate.jsp和hello.jsp之間爲轉發 關係。authenticate.jsp但願向hello.jsp傳遞當前的用戶名字,如何傳遞這一數據呢?先在authenticate.jsp中調用 setAttribute()方法:post
<% 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 %>
從 更深的層次考慮,request.getParameter()方法傳遞的數據,會從Web客戶端傳到Web服務器端,表明HTTP請求數據。 request.getParameter()方法返回String類型的數據。spa
request.setAttribute()和getAttribute()方法傳遞的數據只會存在於Web容器內部,在具備轉發關 系的Web組件之間共享。這兩個方法可以設置Object類型的共享數據
request.getParameter()取得是經過容器的實現 來取得經過相似post,get等方式傳入的數據。orm
request.setAttribute() 和getAttribute()只是在web容器內部流轉,僅僅是請求處理階段。對象
總的來講:request.getAttribute()方法返 回request範圍內存在的對象,而request.getParameter()方法是獲取http提交過來的數據。getAttribute是返回 對象,getParameter返回字符串。blog