我有 3 个包含特定字符串的字符串数组,如下所示:
String jsonA[] = new String[list.size()];
String jsonA2[] = new String[list2.size()];
String jsonA3[] = new String[list3.size()];
for(int i=0;i<str.length;i++){
jsonA[i]="title:"+str[i]+"url:"+str2[i]+"banner:"+str3[i];
//System.out.println(jsonA[i]);
Gson gson = new Gson();
String json = gson.toJson(jsonA[i]);
System.out.println(json);
}
让我这样解释:
jsonA[] has: str1,str2,str3
jsonA2[] has: str4,str5,str6
jsonA3[] has: str7,str8,str9
我想制作一个 3D 数组,如下所示:
json3D[i][i][i] = str1,str4,str7;
json3D[i+1][i+1][i+1] = str2,str5,str8;
json3D[i+2][i+2][i+2] = str3,str6,str9;
最后将它们转换为json。
谢谢你的帮助。