我有JSONObject一些要转换成的属性Map<String, Object>
JSONObject
Map<String, Object>
我可以从json.org或使用ObjectMapper什么吗?
ObjectMapper
使用来自http://json.org/的 Jackson(http://jackson.codehaus.org/)
HashMap<String,Object> result = new ObjectMapper().readValue(<JSON_OBJECT>, HashMap.class);