我需要你们的帮助。
我在java中通过迭代器使用for循环。我想将流水号添加到列表中。我的代码是这样的。
Map item1 = new LinkedHashMap();
int intRunningNo = 0;
for(Iterator<Object> i = sr.getResultList().iterator();i.hasNext();){
Object object = i.next();
//How do i create a running no here.
//I try intRunningNo + 1 is not working
item1.put("field1", object.getName());
item1.put("field2", object.getDescription());
}