我是 json 新手,需要从服务器向客户端发送一些数据。我在客户端接收数据作为 json 字符串,但需要将其转换为ArrayList<NameValuePair>
. 我努力了:
Type type = new TypeToken<ArrayList<NameValuePair>>() {}.getType();
ArrayList<NameValuePair> arrayList = new Gson().fromJson(response, type);
但我它抛出异常,所以我需要一个更好的方法来做到这一点。我希望我的情况很清楚。所有有效的答案将不胜感激。