Retrieve POST parameters only (Java)

前端 未结 6 2040
深忆病人
深忆病人 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:46

    I think you could do something with getMethod() available from the HttpServletRequest Interface.

    Java doc 1.6

    This is also available in 1.4 and 1.5.

提交回复
热议问题