从Bean中迭代值时出错

时间:2014-05-14 13:24:02

标签: java arrays

我将resultset值带入bean PorgInfo。它的值类似于

程序,组组织。试图让特定的组织属于特定组

该组属于特定程序

通过循环如下

 Map m = jdbcCall.execute(in );
 for(PorgInfo gInfo: m.get("PorgInfo")){ //**Can only iterate over an array or an instance  of java.lang.Iterable**
//Planned to goahead like below but can't proceed bcz of above issue
  for(Program pgm: temp1){
  for(Group gpm:temp2){
  ..................
 }

所以从PorgInfo开始我需要Program1,其中Group1有Org 1,Program2有Group2,有Org 2 ......

如果我遗失了什么,请告诉我。

谢谢!

0 个答案:

没有答案