Java工具类之——BigDecimal运算封装(包含金额的计算方式)

日常对于金额计算,应该都是用的BigDecimal,  可是苦于没有好的工具类方法,现在贡献一个我正在用的对于数字计算的工具类,项目中就是用的这个,简单粗暴好用,话不多说,代码奉上(该工具类需要引入google的一个jar  ,com.google.common.base.Optional,具体maven引入看文章末尾):

  1. import java.math.BigDecimal;
  2. public class NumberArithmeticUtils {
  3. /**
  4. * BigDecimal的加法运算封装
  5. * @author : shijing
  6. * 2017年3月23日下午4:53:21
  7. * @param b1
  8. * @param bn
  9. * @return
  10. */
  11. public static BigDecimal safeAdd(BigDecimal b1, BigDecimal... bn) {
  12. if (null == b1) {
  13. b1 = BigDecimal.ZERO;
  14. }
  15. if (null != bn) {
  16. for (BigDecimal b : bn) {
  17. b1 = b1.add(null == b ? BigDecimal.ZERO : b);
  18. }
  19. }
  20. return b1;
  21. }
  22. /**
  23. * Integer加法运算的封装
  24. * @author : shijing
  25. * 2017年3月23日下午4:54:08
  26. * @param b1   第一个数
  27. * @param bn   需要加的加法数组
  28. * @注 : Optional  是属于com.google.common.base.Optional<T> 下面的class
  29. * @return
  30. */
  31. public static Integer safeAdd(Integer b1, Integer... bn) {
  32. if (null == b1) {
  33. b1 = 0;
  34. }
  35. Integer r = b1;
  36. if (null != bn) {
  37. for (Integer b : bn) {
  38. r += Optional.fromNullable(b).or(0);
  39. }
  40. }
  41. return r > 0 ? r : 0;
  42. }
  43. /**
  44. * 计算金额方法
  45. * @author : shijing
  46. * 2017年3月23日下午4:53:00
  47. * @param b1
  48. * @param bn
  49. * @return
  50. */
  51. public static BigDecimal safeSubtract(BigDecimal b1, BigDecimal... bn) {
  52. return safeSubtract(true, b1, bn);
  53. }
  54. /**
  55. * BigDecimal的安全减法运算
  56. * @author : shijing
  57. * 2017年3月23日下午4:50:45
  58. * @param isZero  减法结果为负数时是否返回0,true是返回0(金额计算时使用),false是返回负数结果
  59. * @param b1        被减数
  60. * @param bn        需要减的减数数组
  61. * @return
  62. */
  63. public static BigDecimal safeSubtract(Boolean isZero, BigDecimal b1, BigDecimal... bn) {
  64. if (null == b1) {
  65. b1 = BigDecimal.ZERO;
  66. }
  67. BigDecimal r = b1;
  68. if (null != bn) {
  69. for (BigDecimal b : bn) {
  70. r = r.subtract((null == b ? BigDecimal.ZERO : b));
  71. }
  72. }
  73. return isZero ? (r.compareTo(BigDecimal.ZERO) == -1 ? BigDecimal.ZERO : r) : r;
  74. }
  75. /**
  76. * 整型的减法运算,小于0时返回0
  77. * @author : shijing
  78. * 2017年3月23日下午4:58:16
  79. * @param b1
  80. * @param bn
  81. * @return
  82. */
  83. public static Integer safeSubtract(Integer b1, Integer... bn) {
  84. if (null == b1) {
  85. b1 = 0;
  86. }
  87. Integer r = b1;
  88. if (null != bn) {
  89. for (Integer b : bn) {
  90. r -= Optional.fromNullable(b).or(0);
  91. }
  92. }
  93. return null != r && r > 0 ? r : 0;
  94. }
  95. /**
  96. * 金额除法计算,返回2位小数(具体的返回多少位大家自己看着改吧)
  97. * @author : shijing
  98. * 2017年3月23日下午5:02:17
  99. * @param b1
  100. * @param b2
  101. * @return
  102. */
  103. public static <T extends Number> BigDecimal safeDivide(T b1, T b2){
  104. return safeDivide(b1, b2, BigDecimal.ZERO);
  105. }
  106. /**
  107. * BigDecimal的除法运算封装,如果除数或者被除数为0,返回默认值
  108. * 默认返回小数位后2位,用于金额计算
  109. * @author : shijing
  110. * 2017年3月23日下午4:59:29
  111. * @param b1
  112. * @param b2
  113. * @param defaultValue
  114. * @return
  115. */
  116. public static <T extends Number> BigDecimal safeDivide(T b1, T b2, BigDecimal defaultValue) {
  117. if (null == b1 || null == b2) {
  118. return defaultValue;
  119. }
  120. try {
  121. return BigDecimal.valueOf(b1.doubleValue()).divide(BigDecimal.valueOf(b2.doubleValue()), 2, BigDecimal.ROUND_HALF_UP);
  122. } catch (Exception e) {
  123. return defaultValue;
  124. }
  125. }
  126. /**
  127. * BigDecimal的乘法运算封装
  128. * @author : shijing
  129. * 2017年3月23日下午5:01:57
  130. * @param b1
  131. * @param b2
  132. * @return
  133. */
  134. public static <T extends Number> BigDecimal safeMultiply(T b1, T b2) {
  135. if (null == b1 || null == b2) {
  136. return BigDecimal.ZERO;
  137. }
  138. return BigDecimal.valueOf(b1.doubleValue()).multiply(BigDecimal.valueOf(b2.doubleValue())).setScale(2, BigDecimal.ROUND_HALF_UP);
  139. }
  140. }

Optional所在的jar以及版本:guava-18.0.ar

pom.xml配置:

    1. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
    2. <dependency>
    3. <groupId>com.google.guava</groupId>
    4. <artifactId>guava</artifactId>
    5. <version>18.0</version>
    6. </dependency>
上一篇:java精确计算工具类


下一篇:BigDecimal 工具类