In Java, I have an array of integers. Is there a quick way to convert them to a string?
I.E. int[] x = new int[] {3,4,5}
x toString() should yield "345"
|
Simplest performant approach is probably StringBuilder:
If you find yourself doing this in multiple places, you might want to look at Guava's |
|||||||||||||||
|
You need to read all once at least. |
||||
|
|
|
||||
|
|
|
Try with this - you have to
Where intArray is your integer array. |
|||||||||||||||
|
{3, 45}also yields"345"? You sure you want to do this? You may want to step back and rethink your design through. – polygenelubricants Sep 17 '10 at 4:27