Long型怎么转换成BigInteger????如题。我的rsa是通过BigInteger实现的,但是我把密钥存入文档中的话,只能存成String格式或者是Long格式。从文档中调用出密钥后,我想讲它转换会BigInteger形式怎么实现啊???请问有人知道嘛??[解决办法]Long val = ...;BigInteger big = new BigInteger(val.toString());