Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个正确的 JSON 字符串,它由对象 A 组成,包含一组其他对象 B。
当我现在尝试从 JSON 字符串中取回这个对象时,对象集 B 将只有一个条目,而不是 JSON 字符串中包含的所有条目。
有什么建议,还是我只是做了禁止的事情?
谢谢
对于那些可能会摔倒的人来说,这解决了 Set 的问题:
JSONArray jsonArray = JSONArray.fromObject(object); JSONObject jsonObject = new JSONObject(); jsonObject.put("data", jsonArray.toString());