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,165
  • 12
  • 42
  • 51

1 Answers1

50

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

String.format("%15s", formatter.format(i))
Howard
  • 38,639
  • 9
  • 64
  • 83