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.
我有一个像 {"xyz": ["a","b","c"]} 这样的 json 响应。我正在尝试使用JsonObject和JsonArray类将值 a、b、c 作为字符串。
最好的方法是什么?
可能您可能需要执行以下操作
JSONObject myjson = new JSONObject(JSON_OBJECT); JSONArray xyz_array= myjson.getJSONArray("xyz");
并遍历 xyz_array 以获取数组中的每个对象。