java中價格的數字中間有逗號的格式化
- public class DecimalFormatTool {
-
- //每3位中間添加逗號的格式化顯示
- public static String getCommaFormat(BigDecimal value){
- return getFormat(",###.##",value);
- }
-
- //自定義數字格式方法
- public static String getFormat(String style,BigDecimal value){
- DecimalFormat df = new DecimalFormat();
- df.applyPattern(style);// 將格式應用於格式化器
- return df.format(value.doubleValue());
- }
-
- public static void main(String[] args) {
- System.out.println(DecimalFormatTool.getCommaFormat(new BigDecimal(0.5)));
- }
-
- }
歡迎關注本站公眾號,獲取更多信息