28

I have an array of these numbers

61672
8414449
264957

I use a DecimalFormat object like this

DecimalFormat formatter = new DecimalFormat("###,### bytes");

to get these results

61,672 bytes
8,414,449 bytes
264,957 bytes

but I need the results to be aligned to right like the following

   61,672 bytes
8,414,449 bytes
  264,957 bytes

Your help is already appreciated.

David Weng
  • 4,085
  • 12
  • 40
  • 50

1 Answers1

47

You can wrap it into a String.format call like this:

String.format("%15s", formatter.format(i))
Howard
  • 37,615
  • 8
  • 61
  • 82