如何在java中将BigInteger转换为String
2022-09-01 09:43:33
我按如下方式将 a 转换为:String
BigInteger
Scanner sc=new Scanner(System.in);
System.out.println("enter the message");
String msg=sc.next();
byte[] bytemsg=msg.getBytes();
BigInteger m=new BigInteger(bytemsg);
现在我想要我的字符串回来。我正在使用,但这给了我想要的结果。m.toString()
为什么?错误在哪里,我该怎么办?