java decimal String format - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T23:52:15Zhttp://stackoverflow.com/feeds/question/433958http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/433958/java-decimal-string-format1java decimal String format richs2009-01-11T23:08:55Z2009-01-13T08:52:37Z
<p>I need to format a decimal value to a string where i always display at lease 2 decimals and at most 4. </p>
<p>so for example</p>
<pre><code>"34.49596" would be "34.4959"
"49.3" would be "49.30"
</code></pre>
<p>can this be done using the String.format command? Or is there an easier/better way to do this in java.</p>
http://stackoverflow.com/questions/433958/java-decimal-string-format/433962#4339621Answer by duffymo for java decimal String format duffymo2009-01-11T23:11:39Z2009-01-11T23:11:39Z<p>You want java.text.DecimalFormat</p>
http://stackoverflow.com/questions/433958/java-decimal-string-format/433963#4339631Answer by cagcowboy for java decimal String format cagcowboy2009-01-11T23:11:50Z2009-01-11T23:11:50Z<p>java.text.NumberFormat is probably what you want.</p>
http://stackoverflow.com/questions/433958/java-decimal-string-format/433968#4339683Answer by Richard Campbell for java decimal String format Richard Campbell2009-01-11T23:13:33Z2009-01-11T23:13:33Z<p>You want java.text.DecimalFormat.</p>
<pre><code>DecimalFormat df = new DecimalFormat("0.00##");
String result = df.format(34.4959);
</code></pre>
http://stackoverflow.com/questions/433958/java-decimal-string-format/433975#4339759Answer by Yuval A for java decimal String format Yuval A2009-01-11T23:16:05Z2009-01-13T08:52:37Z<p>Here is a small code snippet that does the job:</p>
<pre><code>double a = 34.51234;
NumberFormat df = DecimalFormat.getInstance();
df.setMinimumFractionDigits(2);
df.setMaximumFractionDigits(4);
df.setRoundingMode(RoundingMode.DOWN);
System.out.println(df.format(a));
</code></pre>
http://stackoverflow.com/questions/433958/java-decimal-string-format/434134#4341341Answer by Brian Clapper for java decimal String format Brian Clapper2009-01-12T00:49:53Z2009-01-12T00:49:53Z<p>NumberFormat and DecimalFormat are definitely what you want. Also, note the <code>NumberFormat.setRoundingMode()</code> method. You can use it to control how rounding or truncation is applied during formatting.</p>