Iterator<String> it = list.iterator(); while(it.hasNext()){ String s = (String)it.next(); System.out.println(s); }