jsp怎么把String类型转换成Biginteger类型
时间: 2023-06-01 15:04:27 浏览: 107
可以使用BigInteger类的构造方法将String类型转换成BigInteger类型。例如:
```
String str = "123456789";
BigInteger bigInt = new BigInteger(str);
```
这样就将字符串"123456789"转换成了BigInteger类型的对象bigInt。注意,如果字符串中包含非数字字符,会抛出NumberFormatException异常。如需处理此异常,可以使用try-catch语句。
阅读全文