up vote 76 down vote favorite
17
share [g+] share [fb]

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]
link|improve this question

61% 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
feedback

6 Answers

up vote 130 down vote accepted

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|improve this answer
Yep - this is the best way to go. +1 – Yuval Adam Jan 3 '09 at 20:48
2  
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
1  
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
1  
@Alex: for me, it did =D – Rafael Almeida Nov 9 '10 at 2:40
2  
import java.util.Arrays; – rohannes Nov 15 '11 at 9:21
show 1 more comment
feedback

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|improve this answer
feedback

This is nice to know, however, as for "always check the standard libraries first" I'd never have stumbled upon the trick of Arrays.toString( myarray )

--since I was concentrating on the type of myarray to see how to do this. I didn't want to have to iterate through the thing: I wanted an easy call to make it come out similar to what I see in the Eclipse debugger and myarray.toString() just wasn't doing it.

import java.util.Arrays;
.
.
.
System.out.println( Arrays.toString( myarray ) );
link|improve this answer
2  
+1 - Thanks for showing the import. – Clinton Blackmore Sep 18 '10 at 0:16
feedback

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|improve this answer
4  
Unfortunately this only works with arrays of objects, not arrays of primitives. – Alex Spurling Jan 3 '09 at 21:57
feedback
for(int n: someArray)
{
    System.out.println(n+" ");
}
link|improve this answer
feedback

If you are looking to print a 2-dimensional array, you may have to use a for loop.

link|improve this answer
2  
No loop needed, unless you want a specific format. Arrays.deepToString will print all elements out. – Dopyiii Jul 27 '11 at 19:54
feedback

Your Answer

 
or
required, but never shown

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