Retrieve POST parameters only (Java)

前端 未结 6 2008
深忆病人
深忆病人 2021-01-04 10:03

Does anyone know of a way to get only POST parameters from an HttpServletRequest object?

IE, PHP has the $_POST superglobal and Perl\'s CGI.pm will only retrieve POS

6条回答
  •  借酒劲吻你
    2021-01-04 10:51

    Couldn't you just get the parameters from the HttpServletRequest within doPost or doGet in a subclass of HttpServlet?

    Anything you grab (via getParemeter) inside of doPost is a POST and anything inside of doGet is a GET.

提交回复
热议问题