Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Java by (4k points)

I am HTTP POST-ing to URL http://laptop:8080/apollo/services/rpc?cmd=execute

with POST data

{ "jsondata" : "data" }

Http request has Content-Type of application/json; charset=UTF-8

How do I get the POST data (jsondata) from HttpServletRequest?

If I enumerate the request params, I can only see one param, which is "cmd", not the POST data.

1 Answer

0 votes
by (46k points)

Normaly you can GET and POST parameters in a servlet the same way:

request.getParameter("cmd");

But only if the POST data is encoded as key-value pairs of content type: "application/x-www-form-urlencoded" like when you use a standard HTML form.

If you use a different encoding schema for your post data, as in your case when you post a json data stream, you need to use a custom decoder that can process the raw datastream from:

BufferedReader reader = request.getReader();

Json post processing example (uses org.json package )

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...

}

Related questions

0 votes
1 answer
asked Oct 9, 2019 in Java by Anvi (10.2k points)
0 votes
1 answer
asked Jul 25, 2019 in AWS by yuvraj (19.1k points)
0 votes
1 answer
asked Oct 9, 2019 in Python by Sammy (47.6k points)
0 votes
1 answer
0 votes
1 answer

Browse Categories

...