BigInteger modulus = new BigInteger("74012333486664938781784917319558621132853116184330140056431518519045738769048519249056658298166167763470840652490749373904013083030606481430471831114359564218640421134865601541504510679730861155149074228202153555958396574024051859098069905430336909436487040882153838831388394227045818116146099262275363316229",10);
BigInteger publicExponent = new BigInteger("65537");
RSAPublicKeySpec rsaPublicKeySpec = new RSAPublicKeySpec(modulus,publicExponent);
//System.out.println("encryptData:" + new String(encryptData));
//私钥解密
BigInteger privateExponent = new BigInteger("11894012485795125429143212982125995968250133812249035431503850146369069696745639939744949039417215906814088129637190783922930036322662731928921514950278998682712848452472751188416695902648346915331619305800219832154430379586340557456420648400558539747973551728237870781526760012558742029523629863397333781297",10);
RSAPrivateKeySpec rsaPrivateKeySpec = new RSAPrivateKeySpec(modulus,privateExponent);