DecimalFormat的使用

來源:互聯網
上載者:User
轉載: http://www.blogjava.net/zhanglijun33/archive/2007/08/03/java2.html

    用 DecimalFormat 格式化數字引言 Java中對浮點數的輸出表示在Java中浮點數包括基本型float、double,以及對象封裝類型的Float和Double,對於這些浮點數的輸出,不管是顯式地還是隱式地調用toString()得到它的表示字串,輸出格式都是按照如下規則進行的如果絕對值大於0.001、小於10000000,那麼就以常規的小數形式表示。如果在上述範圍之外,則使用科學計數法表示。即類似於1.234E8的形式。可以使用 java.text.DecimalFormat及其父類NumberFormat格式化數字本例只淺述DecimalFormat的使用。 Pattern 0 - 如果對應位置上沒有數字,則用零代替 # - 如果對應位置上沒有數字,則保持原樣(不用補);如果最前、後為0,則保持為空白。正負數模板用分號(;)分割 Number Format Pattern Syntax You can design your own format patterns for numbers by following the rules specified by the following BNF diagram: pattern := subpattern{;subpattern} subpattern := {prefix}integer{.fraction}{suffix} prefix := '//u0000'..'//uFFFD' - specialCharacters suffix := '//u0000'..'//uFFFD' - specialCharacters integer := '#'* '0'* '0' fraction := '0'* '#'* DEMO value 123456.789 pattern ,###.### output 123,456.789 Explanation The pound sign (#) denotes a digit, the comma(逗號) is a placeholder for the grouping separator, and the period(句號) is a placeholder for the decimal separator. 井號(#)表示一位元字,逗號是用於分組分隔字元的預留位置,點是小數點的預留位置。如果小數點的右面,值有三位,但是式樣只有兩位。format方法通過四捨五入處理。 value 123.78 pattern 000000.000 output 000123.780 Explanation The pattern specifies leading and trailing zeros, because the 0 character is used instead of the pound sign (#). 應用執行個體 1: /* * Copyright (c) 1995-1998 Sun Microsystems, Inc. All Rights Reserved. */ import java.util.*; import java.text.*; public class DecimalFormatDemo { static public void customFormat(String pattern, double value ) { DecimalFormat myFormatter = new DecimalFormat(pattern); String output = myFormatter.format(value); System.out.println(value + " " + pattern + " " + output); } static public void localizedFormat(String pattern, double value, Locale loc ) { NumberFormat nf = NumberFormat.getNumberInstance(loc); DecimalFormat df = (DecimalFormat)nf; df.applyPattern(pattern); String output = df.format(value); System.out.println(pattern + " " + output + " " + loc.toString()); } static public void main(String[] args) { customFormat("###,###.###", 123456.789); customFormat("###.##", 123456.789); customFormat("000000.000", 123.78); customFormat("$###,###.###", 12345.67); customFormat("/u00a5###,###.###", 12345.67); Locale currentLocale = new Locale("en", "US"); DecimalFormatSymbols unusualSymbols = new DecimalFormatSymbols(currentLocale); unusualSymbols.setDecimalSeparator('|'); unusualSymbols.setGroupingSeparator('^'); String strange = "#,##0.###"; DecimalFormat weirdFormatter = new DecimalFormat(strange, unusualSymbols); weirdFormatter.setGroupingSize(4); String bizarre = weirdFormatter.format(12345.678); System.out.println(bizarre); Locale[] locales = { new Locale("en", "US"), new Locale("de", "DE"), new Locale("fr", "FR") }; for (int i = 0; i

posted on 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.