zoukankan      html  css  js  c++  java
  • DecimalFormat 数字格式化

    字符串数字的格式

    import java.text.*;
    
    class DecimalFormatDemo {
        static public void main(String[] args) {
            customFormat("###,###.###", 123456.789);
            customFormat("###.##", 123456.789);
            customFormat("000000.000", 123.78);
            customFormat("$###,###.###", 12345.67);
        }
    
        /**
         * Prints a double value formatted according to a given pattern.
         */
        static public void customFormat(String pattern, double value) {
            DecimalFormat myFormatter = new DecimalFormat(pattern);
            String output = myFormatter.format(value);
            System.out.println(value + "  " + pattern + "  " + output);
        }
    }
    123456.789  ###,###.###  123,456.789
    123456.789  ###.##  123456.79
    123.78  000000.000  000123.780
    12345.67  $###,###.###  $12,345.67
    Output:
     
    如有错误,恳求读者指出,发送到wu13213786609@outlook.com。
  • 相关阅读:
    最终一致性解决实例
    分布式事务一致性方案
    分布式事务
    OSX
    JAVA
    Eclipse
    Activiti
    CentOS
    用Visual Studio 2015 编写 MASM 汇编程序(二)从头开发一个Win32汇编程序
    Oracle
  • 原文地址:https://www.cnblogs.com/WLCYSYS/p/15250290.html
Copyright © 2011-2022 走看看