Closed GoogleCodeExporter closed 8 years ago
Yes, we were aware that some users may need this kind of convenient array
support. We
are considering adding it to the future release. Thanks a lot for your
suggestion.
Original comment by fangyid...@gmail.com
on 7 Oct 2009 at 12:30
Issue 14 has been merged into this issue.
Original comment by fangyid...@gmail.com
on 7 Dec 2009 at 5:22
json-simple was unable to serialize the result of request.getParameterMap()
because
it returns Map<String,String[]>. In fact, the result is not even valid JSON. If
it's
just calling toString(), I would expect it to at least be quoted.
*** Code:
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String json = JSONValue.toJSONString(request.getParameterMap());
doSomethingWith(json);
}
*** Test URL:
/myservlet?test=foo
*** Result:
{"test":[Ljava.lang.String;@2afa2afa}
*** Expected Result:
{"test":["foo"]}
Original comment by jeoffwilks@gmail.com
on 10 Feb 2010 at 8:11
Issue 28 has been merged into this issue.
Original comment by fangyid...@gmail.com
on 14 Jul 2010 at 1:14
Looks like the outcome from
http://code.google.com/p/json-simple/issues/detail?id=48 is pretty similar to
this, maybe should be merged?
Original comment by michael....@gmail.com
on 3 Apr 2012 at 8:07
This is done in r211.
Original comment by jon.cham...@gmail.com
on 10 Aug 2013 at 2:58
Original issue reported on code.google.com by
bare...@gmail.com
on 6 Oct 2009 at 6:01