Java examples for java.math:BigDecimal
big Decimal to Integer
//package com.java2s; import java.math.BigDecimal; public class Main { public static Integer bigDecimal2Integer(Object obj) { if (obj == null) { return 0; }// www.j a v a 2 s . c o m BigDecimal bd = (BigDecimal) obj; return bd.intValue(); } }