从json编码解码到java.util.Map的库?

从json编码解码到java.util.Map的库?,第1张

从json编码/解码到java.util.Map的库?

JSON-Simple看起来相对易于使用(下面的示例)。

映射到JSON:

  Map map = new HashMap();  map.put("name", "foo");  map.put("nickname", "bar");  String jsonText = JSONValue.toJSonString(map);

JSON到列表/地图:

  String s = yourJsonString;  List list = (JSONArray) JSONValue.parse(s);         Map map = (JSONObject) list.get(0);


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5615248.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存