分转
元转分和分转元的java实现
元转分和分转元的java实现/*** 元转分,确保price保留两位有效数字* @return*/public static int changeY2F(double price) {java valueofDecimalFormat df = new DecimalFormat("#.00");price = Double.valueOf(df.format(price));int money...
java元转分,分转元
java元转分,分转元java元转分,分转元元转分public static int changeY2F(String amount){BigDecimal bigDecimal =new BigDecimal(amount).setScale(2);//保留两位⼩数return bigDecimal.multiply(new BigDecimal(100)).intValue();}上⾯这种⽅式...