vote up 4 vote down star
3

What's the simplest way of printing an array of primitives or of objects in Java? Here are some example inputs and outputs:

int[] intArray = new int[] {1, 2, 3, 4, 5};
//output: [1, 2, 3, 4, 5]

String[] strArray = new String[] {"John", "Mary", "Bob"};
//output: [John, Mary, Bob]
flag

29% accept rate
What do you want the representation to be for objects other than strings? The result of calling toString? In quotes or not? – Jon Skeet Jan 3 '09 at 20:41
Yes objects would be represented by their toString() method and without quotes (just edited the example output). – Alex Spurling Jan 3 '09 at 20:42

3 Answers

vote up 22 vote down check

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.

link|flag
Yep - this is the best way to go. +1 – Yuval A Jan 3 '09 at 20:48
Thanks, I thought there was a compact solution but just couldn't find it. Hopefully this will come up next time I search Google :) – Alex Spurling Jan 3 '09 at 20:48
I did actually check before posting that does Google find that info easily: It didn't since Google has a preference for Java 1.4.2 apidocs for some reason and like I said, this is in Java 5. – Esko Jan 3 '09 at 20:55
vote up 3 vote down

Always check the standard libraries first. Try:

System.out.println(Arrays.toString(array));

or if your array contains other arrays as elements:

System.out.println(Arrays.deepToString(array));
link|flag
vote up 2 vote down

If you're using Java 1.4, you can instead do:

System.out.println(Arrays.asList(array));

(This works in 1.5+ too, of course.)

link|flag
Unfortunately this only works with arrays of objects, not arrays of primitives. – Alex Spurling Jan 3 '09 at 21:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.