使用jqGrid怎么获取数组中的子数组
我是个前端小白,才入行不到一年。最近在使用jqGrid的时候遇到这个问题希望各位大神帮我解决下,先谢过了我要怎么拿到areas和devicesAreas里面的地址数据,在...
我是个前端小白,才入行不到一年。最近在使用jqGrid的时候遇到这个问题希望各位大神帮我解决下,先谢过了我要怎么拿到areas和devicesAreas里面的地址数据,在进行拼接。能不能帮忙写一个例子啊。 下面图是后端的数据
展开
1个回答
展开全部
一般是用 [][] 来读
例如 :
String[][] strs = new String[3][3];
strs[0] = new String[]{"1","2","3"};
strs[1] = new String[]{"1","2","3"};
strs[2] = new String[]{"1","2","3"};
System.out.println(strs[0][0]);
System.out.println(strs[1][1]);
System.out.println(strs[2][2]);
加上条件的话 用双重循环体来实现
String[][] strs = new String[3][3];
strs[0] = new String[]{"1","2","3"};
strs[1] = new String[]{"1","2","3"};
strs[2] = new String[]{"1","2","3"};
for(int a = 0;a<strs.length;a++){
for(int c = 0; c<strs[a].length;c++){
System.out.print(strs[a][c]);
}
System.out.println();
}
例如 :
String[][] strs = new String[3][3];
strs[0] = new String[]{"1","2","3"};
strs[1] = new String[]{"1","2","3"};
strs[2] = new String[]{"1","2","3"};
System.out.println(strs[0][0]);
System.out.println(strs[1][1]);
System.out.println(strs[2][2]);
加上条件的话 用双重循环体来实现
String[][] strs = new String[3][3];
strs[0] = new String[]{"1","2","3"};
strs[1] = new String[]{"1","2","3"};
strs[2] = new String[]{"1","2","3"};
for(int a = 0;a<strs.length;a++){
for(int c = 0; c<strs[a].length;c++){
System.out.print(strs[a][c]);
}
System.out.println();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询