I am having trouble converting a long (cents) into currency format.
My Code:
long doublePayment = 1099; //Should equal $10.99
DecimalFormat dFormat = new DecimalFormat();
String formattedString = dFormat.format(doublePayment);
System.out.println(formattedString);
Output: 1,099
I also tried:
long doublePayment = 1099;
NumberFormat n = NumberFormat.getCurrencyInstance(Locale.US);
String s = n.format(doublePayment);
System.out.println(s);
Since this is cents, the output should be 10.99 or $10.99.
Cant figure out what I am doing wrong. Thanks!!!