java中價格的數字中間有逗號的格式化

  1. public class DecimalFormatTool {  
  2.       
  3.     //每3位中間添加逗號的格式化顯示  
  4.     public static String getCommaFormat(BigDecimal value){  
  5.         return getFormat(",###.##",value);  
  6.     }  
  7.       
  8.     //自定義數字格式方法  
  9.     public static String getFormat(String style,BigDecimal value){  
  10.         DecimalFormat df = new DecimalFormat();  
  11.         df.applyPattern(style);// 將格式應用於格式化器  
  12.         return df.format(value.doubleValue());  
  13.     }  
  14.       
  15.     public static void main(String[] args) {  
  16.         System.out.println(DecimalFormatTool.getCommaFormat(new BigDecimal(0.5)));  
  17.     }  
  18.       
相關文章
相關標籤/搜索