博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数字格式化DecimalFormat 总结
阅读量:6154 次
发布时间:2019-06-21

本文共 1457 字,大约阅读时间需要 4 分钟。

hot3.png

  1. import java.text.DecimalFormat;  
  2.   
  3.   
  4. public class test {  
  5.   
  6.     /** 
  7.      * @param args 
  8.      */  
  9.     public static void main(String[] args) {  
  10.   
  11.         double d = 1231423.3823;  
  12.         System.out.println("格式化前:"+d);  
  13.         DecimalFormat f = new DecimalFormat();  
  14.           
  15.         f.applyPattern("#.##");       
  16.         System.out.println("applyPattern{#.##} 格式化后:"+f.format(d));  
  17.           
  18.         f.applyPattern("0000000000.000000");  
  19.         System.out.println("applyPattern{0000000000.000000} 格式化后:"+f.format(d));  
  20.           
  21.         f.applyPattern("-#,###.###");         
  22.         System.out.println("applyPattern{##,###.##} 格式化后:"+f.format(d));  
  23.           
  24.         f.applyPattern("0.00KG");  
  25.         System.out.println("applyPattern{0.00KG} 格式化后:"+f.format(d));  
  26.           
  27.         f.applyPattern("#000.00KG");  
  28.         System.out.println("applyPattern{#000.00KG} 格式化后:"+f.format(d));  
  29.           
  30.         f.applyPattern("0.00%");  
  31.         System.out.println("applyPattern{0.00%} 格式化后:"+f.format(d));  
  32.           
  33.         //E后面的是指数的格式 前面是底数的格式  
  34.         f.applyPattern("#.##E000");  
  35.         System.out.println("applyPattern{#.##E000} 格式化后:"+f.format(d));  
  36.           
  37.         // /u2030 表示乘以1000并表示成 ‰,放在最后  
  38.         f.applyPattern("0.00/u2030");  
  39.         System.out.println("applyPattern{0.00/u2030%} 格式化后:"+f.format(d));  
  40.     }  
  41. }  

结果

格式化前:1231423.3823

applyPattern{#.##} 格式化后:1231423.38
applyPattern{0000000000.000000} 格式化后:0001231423.382300
applyPattern{##,###.##} 格式化后:-1,231,423.382
applyPattern{0.00KG} 格式化后:1231423.38KG
applyPattern{#000.00KG} 格式化后:1231423.38KG
applyPattern{0.00%} 格式化后:123142338.23%
applyPattern{#.##E000} 格式化后:1.23E006
applyPattern{0.00‰%} 格式化后:1231423382.30‰

模式中0与# 不同

模式中的"#"表示如果该位存在字符,则显示字符,如果不存在,则不显示。

转载于:https://my.oschina.net/u/264002/blog/134546

你可能感兴趣的文章
NGUI Label Color Code
查看>>
Webpack 2 中一些常见的优化措施
查看>>
移动端响应式
查看>>
js中var、let、const的区别
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>
[20170628]12C ORA-54032.txt
查看>>
除以2
查看>>
高可用集群原理解析
查看>>
Nginx配置URL转向tomcat
查看>>
极客Web前端开发资源大荟萃#001
查看>>