去掉金额的.00
static String toStringMoney(double money) { String moneyNew = money.toStringAsFixed(2); return moneyNew.replaceAll(".00", ""); }