java.lang.Integer cannot be cast to java.math.BigInteger
时间: 2023-11-15 13:01:28 浏览: 110
Can't find a codec for class java.math.BigDecimal.txt
这个错误通常发生在试图将一个Integer类型的对象转换为BigInteger类型的对象时。这是因为Integer和BigInteger是两种不同的数据类型,不能直接进行类型转换。要解决这个问题,可以使用BigInteger类的valueOf方法将Integer类型的对象转换为BigInteger类型的对象。
阅读全文