全部博文(147)
分类: Java
2008-11-25 21:41:57
ArrayList allGoodsInfo=new ArrayList(); List selectAllPOResult=null; try{ ..selectAllPOResult=query.list(); Iterator allPOItem=selectAllPOResult.iterator(); while(allPOItem.hasNext()){ ComputerInfoPO oneComputerInfoPO=(ComputerInfoPO)allPOItem.next();allGoodsInfo.add(oneComputerInfoPO); ... } } ....
|