1. 在android使用保留两位小数正则表达式,报错
如果你希望只保留两位小数,你可以格式化:
DecimalFormat df = new DecimalFormat("0.00");
df.format("3.14159");
如果你想判断是否为两位小数点,可以这样
"^\\d+\\.$\\d{2}"
2. android 保留两位小数问题。
DecimalFormat df = new DecimalFormat("#.00");
改为
DecimalFormat df = new DecimalFormat("0.00");
#.## 表示有0就显示0,没有0就不显示
例如 1.20 就会变成1.2
0.00表示,有没有0都会显示
例如 1.20 依然是 1.20
3. android中如何实现除法的保留小数点后2位,四舍五入!
static long round(double a) Returns the closest long to the argument. static int round(float a) Returns the closest int to the argument精确的,是这样. /** * 提供精确的小...