HttpServletRequest获取JSON POST数据

时间:2010-09-30 14:41:23

标签: java json post servlets

  

可能重复:
  Retrieving JSON Object Literal from HttpServletRequest

我是HTTP发布到网址http://laptop:8080/apollo/services/rpc?cmd=execute

与 POST数据

{ "jsondata" : "data" }

Http请求的内容类型为application/json; charset=UTF-8

如何从HttpServletRequest获取POST数据(jsondata)?

如果我列举请求参数,我只能看到一个参数, 这是“cmd”,而不是POST数据。

3 个答案:

答案 0 :(得分:260)

Normaly你可以用同样的方式在servlet中获取和POST参数:

request.getParameter("cmd");

但是,只有当POST数据为encoded作为内容类型的键值对时:“application / x-www-form-urlencoded”就像使用标准HTML表单时一样。

如果您对发布数据使用不同的编码架构,就像发布 json数据流时的情况一样,则需要使用可以处理原始数据流的自定义解码器:< / p>

BufferedReader reader = request.getReader();

Json后处理示例(使用org.json包)

public void doPost(HttpServletRequest request, HttpServletResponse response)
  throws ServletException, IOException {

  StringBuffer jb = new StringBuffer();
  String line = null;
  try {
    BufferedReader reader = request.getReader();
    while ((line = reader.readLine()) != null)
      jb.append(line);
  } catch (Exception e) { /*report an error*/ }

  try {
    JSONObject jsonObject =  HTTP.toJSONObject(jb.toString());
  } catch (JSONException e) {
    // crash and burn
    throw new IOException("Error parsing JSON request string");
  }

  // Work with the data using methods like...
  // int someInt = jsonObject.getInt("intParamName");
  // String someString = jsonObject.getString("stringParamName");
  // JSONObject nestedObj = jsonObject.getJSONObject("nestedObjName");
  // JSONArray arr = jsonObject.getJSONArray("arrayParamName");
  // etc...
}

答案 1 :(得分:-2)

您是从不同的来源(不同的端口或主机名)发布的吗?如果是这样,我刚刚回答的这个非常近期的主题可能会有所帮助。

问题在于XHR跨域策略,以及如何通过使用名为JSONP的技术解决它的有用提示。最大的缺点是JSONP不支持POST请求。

我知道在原帖中没有提到JavaScript,但是JSON通常用于JavaScript,这就是我跳到那个结论的原因

答案 2 :(得分:-10)

发件人(php json encode):

{"natip":"127.0.0.1","natport":"4446"}

Receiver(java json decode):

/**
 * @comment:  I moved  all over and could not find a simple/simplicity java json
 *            finally got this one working with simple working model.
 * @download: http://json-simple.googlecode.com/files/json_simple-1.1.jar
 */

JSONObject obj = (JSONObject) JSONValue.parse(line); //line = {"natip":"127.0.0.1","natport":"4446"}
System.out.println( obj.get("natport") + " " + obj.get("natip") );     // show me the ip and port please      

希望它对Web开发人员和简单的JSON搜索者有所帮助。