i converted a string to BigInteger as follows:
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);
now i want my string back.i m using m.toString() method but not getting desired result. why??? what is bug in it and what is its remedy.