up vote 4 down vote favorite
3
share [g+] share [fb]

I need to format a decimal value to a string where i always display at lease 2 decimals and at most 4.

so for example

"34.49596" would be "34.4959" 
"49.3" would be "49.30"

can this be done using the String.format command? Or is there an easier/better way to do this in java.

link|improve this question

77% accept rate
feedback

5 Answers

up vote 6 down vote accepted

You want java.text.DecimalFormat.

DecimalFormat df = new DecimalFormat("0.00##");
String result = df.format(34.4959);
link|improve this answer
Follow the same example you will get the wrong result. You need to use the RoundingMode.DOWN for this particular example. Otherwise, it uses HALF_EVEN. No, negative though. – Adeel Ansari Jan 12 '09 at 3:40
feedback

Here is a small code snippet that does the job:

double a = 34.51234;

NumberFormat df = DecimalFormat.getInstance();
df.setMinimumFractionDigits(2);
df.setMaximumFractionDigits(4);
df.setRoundingMode(RoundingMode.DOWN);

System.out.println(df.format(a));
link|improve this answer
No negatives, but your code fails for the very first example, given by the original poster. Need to use RoundingMode.DOWN, otherwise it uses HALF_EVEN by default, I suppose. – Adeel Ansari Jan 12 '09 at 3:41
Thanks for the correction Adeel – Yuval Adam Jan 13 '09 at 8:52
feedback

You want java.text.DecimalFormat

link|improve this answer
feedback

java.text.NumberFormat is probably what you want.

link|improve this answer
feedback

NumberFormat and DecimalFormat are definitely what you want. Also, note the NumberFormat.setRoundingMode() method. You can use it to control how rounding or truncation is applied during formatting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.