1

我的HTTPServletRequest包含以下信息..

headers: 
  Accept-Encoding: gzip, deflate
  X-Chargify-Webhook-Signature: b048ad28f573829f52f05208aa522a6f
  X-Chargify-Webhook-Id: "8233897"
  Content-Type: application/x-www-form-urlencoded
  Accept: "*/*; q=0.5, application/xml"
  Content-Length: "47"
body: payload[chargify]=testing&id=8233897&event=test

现在,如何从请求中读取正文并将正文分成键/值对?

4

1 回答 1

0

Servlet service()方法中有HttPServlerRequest对象。

通过使用此 Request 对象调用request.getParameter(paramName),您可以从请求对象中获取值

参考

于 2013-02-18T10:19:47.267 回答