1

MyHTTPServletRequestには次の情報が含まれています。

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

InServlet service()メソッドにはHttPServlerRequestObject があります。

この Request オブジェクト呼び出しを使用すると、リクエスト オブジェクトrequest.getParameter(paramName)から値を取得できます。

参照

于 2013-02-18T10:19:47.267 に答える