java.math.BigDecimal cannot be cast to java.lang.Integer问题
问题描述:利用sql语句从数据库里面取出数据后,对取出的数据进行数据转换时,出现了java.math.BigDecimal cannot be cast to java.lang.Integer错误,原因是BigDecimal不能直接转换为Integer类型
解决方法:
将取出的数据转换为Integer类型:
Integer id=Integer.parseInt(objects[0].toString());