1

我是 json 新手,需要从服务器向客户端发送一些数据。我在客户端接收数据作为 json 字符串,但需要将其转换为ArrayList<NameValuePair>. 我努力了:

Type type = new TypeToken<ArrayList<NameValuePair>>() {}.getType();
ArrayList<NameValuePair> arrayList = new Gson().fromJson(response, type);

但我它抛出异常,所以我需要一个更好的方法来做到这一点。我希望我的情况很清楚。所有有效的答案将不胜感激。

4

1 回答 1

3

我认为下面的代码对你有帮助。

Type type = new TypeToken<ArrayList<BasicNameValuePair>>() {}.getType();
于 2012-09-12T06:27:47.683 回答