java通過HttpServletRequest擷取post請求中的body內容

來源:互聯網
上載者:User

     在java web應用中,我們如何擷取post請求body中的內容。以及需要注意的問題。
    通常利用request擷取參數可以直接通過req.getParameter(name)的方式擷取url上面或者ajax data提交上來的參數。但是body是沒有名字的,無法通過參數名字這種方式擷取。這時候需要用到io流的方式來擷取body中的內容。
    這裡先貼出一段代碼:

package com.lenovo.servlet;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import javax.servlet.ServletException;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import org.apache.commons.lang.StringUtils;import org.apache.log4j.Logger;import com.alibaba.dubbo.common.utils.IOUtils;import com.lenovo.service.BusinessService;import com.lenovo.utils.WebContext;public class BusinessServlet extends HttpServlet{public static final Logger log = Logger.getLogger(BusinessServlet.class);/** *  */private static final long serialVersionUID = 1L;private static BusinessService service;static{service = (BusinessService) WebContext.getBean("businessService");}@Overrideprotected void doGet(HttpServletRequest req, HttpServletResponse resp)throws ServletException, IOException {doPost(req, resp);}@Overrideprotected void doPost(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException {BufferedReader reader = new BufferedReader(new InputStreamReader(req.getInputStream()));String body = IOUtils.read(reader);String name = req.getParameter("name");if(StringUtils.isNotBlank(body)){log.info("business receive somthing with body :"+body);}res.setCharacterEncoding("UTF-8");res.setContentType("application/json");res.setStatus(HttpServletResponse.SC_OK);res.getWriter().println(service.getName(name));}}
     在這段代碼doPost方法中,用到了IO流來擷取post提交的body,這樣我們就擷取了用戶端提交的參數。

     需要注意的是:擷取body參數,需要在request.getParameter()方法之前調用(如果有需要取QueryString參數的話),因為一旦調用了getParameter()方法之後,再通過IO流的方式擷取body參數就失效了(親測返回"")。

     另外,這裡使用了dubbo-2.5.3.jar的IOUtils.read(reader)方法來讀取post body的內容。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.