浮点数保留两位小数

public class NumberUtils {
public static float decimalwithtwo(float f){
return (float)(Math.round(f*100.0f))/100;
}

}

你可能感兴趣的:(JavaWeb,保留两位小数)