java多线程    Java入门    vsftp    ftp    linux配置    centos    FRP教程    HBase    Html5缓存    webp    zabbix    分布式    neo4j图数据库    

DecimalFormat格式化货币数字为字符串

DecimalFormat可以处理很多类型的货币数字与字符串之间的转换

float f = 22.403312313f;
java.text.DecimalFormat d = new java.text.DecimalFormat("0.00");
String c = d.format(f);
System.out.println(c);

返回22.40

long f = 222111223;
java.text.DecimalFormat d = new java.text.DecimalFormat("0,000");
String c = d.format(f);
System.out.println(c);

返回222,111,223


This entry was posted in JAVA and tagged , . Bookmark the permalink.
月小升QQ 2651044202, 技术交流QQ群 178491360
首发地址:月小升博客https://java-er.com/blog/decimalformat-string/
无特殊说明,文章均为月小升原创,欢迎转载,转载请注明本文地址,谢谢
您的评论是我写作的动力.

Leave a Reply