Quote: 引用 1 楼 XiaToxic 的回复:
楼主你确定格式是这样的吗?如果不是json只能自己去分割了
确实不是json。直接从服务器返回了一个list集合的。
解决好了 就是在客户端截取
List list = new ArrayList();
String[] arr1 = returnVal.split(“],”);
if (arr1 != null && arr1.length > 0) {
for (String str : arr1) {
str = str.replaceAll(“\[“, “”);
str = str.replaceAll(“\]”, “”);
str = str.replaceAll(“””, “”);
String[] arr2 = str.split(“,”);
if (arr2 != null && arr2.length > 0) {
double money = Double.parseDouble(arr2[0]);
String date = arr2[1];
序列化类 object = new 序列化类();
list.add(object);
然后for循环用list.get(i).get方法就可以取出来了。