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精確的,是這樣. /** * 提供精確的小...