float类型保留两位小数

保留两位小数

js
toFixed(2)  

java

DecimalFormat df = new DecimalFormat();
public String toShow(String patter,float num){
   try{
        if(patten == null || patten.equals("")){
            df.applyPattern("###0.00;-###0.00");
        } else{
            df.applyPattern(patten); //设置正则表达式
        }
            return df.format(num);
        } catch(Exception e){
            return "";
        }

}
 

 

你可能感兴趣的:(java,正则表达式)