下面小編就為大家帶來一篇java web學習_淺談request物件中get和post的差異。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
閱讀目錄(Content)
•1.get與post的差異
•1.2 action套件中servlet的doGet方法中的程式碼
•2.執行結果
•2.1 輸入資料
•2.2 印出資料
##•3. post方法
•4. 比較
•5.分析
#1.get與post的差異
#Get和Post方法都是對伺服器的請求方式,只是他們傳輸表單的方式不同。 下面我們就以傳送一個表單的資料為例,來分析get與Post的差異1.1 get方法 jsp中的程式碼form表單程式碼
#1.2 action套件中servlet的doGet方法中的程式碼
##
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html;charset=gbk");//设置响应正文的mime类型 request.setCharacterEncoding("gbk");//设置请求的编码格式 response.setCharacterEncoding("gbk"); String username = request.getParameter("userName");// String password = request.getParameter("password"); String sex = request.getParameter("sex"); String classes = request.getParameter("class"); String hobby[] = request.getParameterValues("hobby");// 获取checkbox的数据保存到hobby数组中 PrintWriter out = response.getWriter(); if (hobby != null) { for (String x: hobby) { out.println("doGet被调用"); out.println("name:"+username+"password:"+password+"sex"+sex+"classes"+classes); out.println("hobby:" + x); } }else{ out.println("此人没爱好!"); } }
2.執行結果 2.1 輸入資料
# 2.2 列印資料
3.post方法# 只需將table表單中method改為post:
#servlet中有這樣的一行程式碼:
同樣能列印出:只是出現了亂碼
4.比較 4.1 在輸出頁按下F12查看
post跟get的差異,優先選擇post# post的缺點:
### #######web版本可避免錯誤######servlet程式碼分析#####################5.分析############servlet作為###控制器###是不應該輸出內容的,我們應該把要列印的內容放到jsp檔案中###以上是簡單介紹關於java中request物件中的get和post的差異(圖)的詳細內容。更多資訊請關注PHP中文網其他相關文章!