今天在运用BigDecimal做除法运算的时候,错误如下:
Non-terminating decimal expansion; no exact representable decimal result
不是很明白为什么会这个样子,度娘告诉我是因为BigDecimal 做除法运算,如果除的结果为无限小数的时候就会报错。解决方法是:
divide(BigDecimal divisor, int scale, int roundingMode)指定scale和roundingMode
附上很详细解说一份http://www.cnblogs.com/mabaishui/archive/2010/12/01.html
和http://hi.baidu.com/manecocomph/blog/item/8db2fa08737d0fc73bc763b3.html