我有来自JSON的数据 5,7,9 我想在arrayList中保存为 #&34;""""""""" 5&#34 ;",7,"" 9 我该怎么办?
答案 0 :(得分:1)
尝试在主forloop中更改下面的代码
更改您的weeklyDataList,如下所示
ArrayList<int[]>weeklyDataList = new ArrayList<int[]>();
Forloop中的代码
int[] numbers = new int[characters.length()];
for (int j = 0; j < characters.length(); j++) {
numbers[j] = Integer.parseInt(characters.getString(j));
}
weeklyDataList.add(i,numbers);