我有一个传入的http POST请求,它将数据发布到数据库中的给定键,例如,curl POST 127.0.0.1/post/1 -d“value = 5”,这会将值5置于key = 1的位置,I我想知道如何在java servlet中处理该命令,比如从curl命令中分割键和值?谢谢!
创建一个覆盖doPost()的servlet:
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String value = request.getParameter("value");
...
}