iterate list of string in java code example
Example 1: iterate list in java
Iterator itr=list.iterator();
while(itr.hasNext)
{
system.out.println(itr.next);
}
Example 2: how to iterate list of string array in java
Iterator<String[]> iterator = myEntries.iterator();
while(itr.hasNext())
for(String temp : itr.next())
// Don't worry, itr.next() will be created only one time
// for an each iteration (while)
System.out.println(temp);