Print ArrayList java

java print each lines of an arraylist separate code example

Example 1: how to print each element of an arraylist on a new line in java

list.forEach(System.out::println);

Example 2: how to print each element of an arraylist on a new line in java

list.forEach(t -> System.out.println(t));

Example 3: how to print each element of an arraylist on a new line in java

for (String element : list) { System.out.println(element); }