如何从JSONObject获取ArrayList <string []>

时间:2017-05-20 13:46:46

标签: java json arraylist

实际上,我有一个像这样的JSONObject:

JSONObject json = new JSONObject();
json.put("type", "login");
json.put("friendList", FriendList);

FriendListArrayList<String[]>的类型 ,然后我使用套接字将JSON传输到我的客户端。

我的客户收到了数据:

JSONObject receive_msg = new JSONObject(data);
String type = receive_msg.getString("type");

我的问题是如何获取数据类型为ArrayList<String[]>的friendList?

如果有人帮忙的话,非常感谢。

1 个答案:

答案 0 :(得分:0)

你需要在列表上使用JsonArray,iteratore并填充jsonArray然后将它放在JsonObject中

  

my answer