tags:

views:

85

answers:

3

How do you print objects in a array in java?

+5  A: 

There are several useful toString() and deepToString() methods in java.util.Arrays class.

String[] strings = { "foo", "bar", "waa" };
System.out.println(Arrays.toString(strings)); // [foo, bar, waa]

An alternative is to just loop over them yourself and print each item separately.

BalusC
+1 for deepToString()
KarlP
+1  A: 

Using Apache Commons Lang:

org.apache.commons.lang.StringUtils.join(Arrays.asList(strings), ", ");

Using Spring Core:

org.springframework.util.StringUtils.collectionToDelimitedString(Arrays.asList(strings), ", ");
Arne Burmeister
... or from the core-API.
Bart Kiers
+1  A: 

You can do it using for loop.

Here's example :

  String[] colors = {"red","blue","black","green","yellow"};
  for (String color : colors) {
   System.out.println(color);
  }

Also check : http://stackoverflow.com/questions/409784/simplest-way-to-print-an-array-in-java

As quoted by Esko in above link is best answer:

In Java 5 Arrays.toString(arr) or Arrays.deepToString(arr) for arrays within arrays.

Note that Object[] version calls .toString() of each object in array. If my memory serves me correct, the output is even decorated in the exact way you're asking.

YoK