Integer nr = 1125;
DecimalFormat myFormatter = new DecimalFormat("#,###");
String strNr = myFormatter.format(Integer);
System.out.println(strNr);
More information about formatting can be found here:
http://java.sun.com/docs/books/tutorial/i18n/format/decimalFormat.html



