java decimal String format - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T23:52:15Z http://stackoverflow.com/feeds/question/433958 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/433958/java-decimal-string-format 1 java decimal String format richs 2009-01-11T23:08:55Z 2009-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#433962 1 Answer by duffymo for java decimal String format duffymo 2009-01-11T23:11:39Z 2009-01-11T23:11:39Z <p>You want java.text.DecimalFormat</p> http://stackoverflow.com/questions/433958/java-decimal-string-format/433963#433963 1 Answer by cagcowboy for java decimal String format cagcowboy 2009-01-11T23:11:50Z 2009-01-11T23:11:50Z <p>java.text.NumberFormat is probably what you want.</p> http://stackoverflow.com/questions/433958/java-decimal-string-format/433968#433968 3 Answer by Richard Campbell for java decimal String format Richard Campbell 2009-01-11T23:13:33Z 2009-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#433975 9 Answer by Yuval A for java decimal String format Yuval A 2009-01-11T23:16:05Z 2009-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#434134 1 Answer by Brian Clapper for java decimal String format Brian Clapper 2009-01-12T00:49:53Z 2009-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>