Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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() but that's giving me the desired result.

Why??? Where is the bug and what can I do about it?

share|improve this question
1  
If I understand your comments right, your msg is not necessarily a number. I guess most of us believed msg was meant to be the string representing a number (like "12345"). But what you want to do is convert "hello" to some number and be able to reconstruct the original string again. wondering why you'd want to do that... IMO converting string to BigInteger in this way makes only sense if you want to do calculations with the resulting number, but then converting it back wouldn't make sense. What am I missing? – Axel Jun 12 '10 at 11:03
actually i m making a program on RSA cryptosystem and in due course i needed to convert msg to BigInteger(during encription) and again the reverse process during decription.but u should answer it without knowing the reason why i m doing because every thing can't be explained here. – condinya Jun 12 '10 at 11:24

6 Answers

up vote 6 down vote accepted

You want to use BigInteger.toByteArray()

String msg = "Hello there!";
BigInteger bi = new BigInteger(msg.getBytes());
System.out.println(new String(bi.toByteArray())); // prints "Hello there!"

The way I understand it is that you're doing the following transformations:

  String  -----------------> byte[] ------------------> BigInteger
          String.getBytes()         BigInteger(byte[])

And you want the reverse:

  BigInteger ------------------------> byte[] ------------------> String
             BigInteger.toByteArray()          String(byte[])

Note that you probably want to use overloads of String.getBytes() and String(byte[]) that specifies an explicit encoding, otherwise you may run into encoding issues.

share|improve this answer
u r right.a lot of thanx – condinya Jun 12 '10 at 11:06

Why don't you use the BigInteger(String) constructor ? That way, round-tripping via toString() should work fine.

(note also that your conversion to bytes doesn't explicitly specify a character-encoding and is platform-dependent - that could be source of grief further down the line)

share|improve this answer
1  
if i m using like BigInteger(String) constructor i m getting the exception:java.lang.NumberFormatException – condinya Jun 12 '10 at 10:50

Use m.toString() or String.valueOf(m). String.valueOf uses toString() but is null safe.

share|improve this answer
i tried both.If my message is hello then in both ways i get their BigInteger value 448378203247 .but i want hello back not the integer – condinya Jun 12 '10 at 10:55
If the BigInteger does represent a String then there does not seem to be any value in converting it into a byte[] or BigInteger. Why do you need to do that? – krock Jun 12 '10 at 11:24

http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html

every object has a toString() method in Java.

share|improve this answer
i used toString() method but instead of printing msg in text it is printing its BigInteger value. – condinya Jun 12 '10 at 10:58

To reverse

byte[] bytemsg=msg.getBytes(); 

you can use

String text = new String(bytemsg); 

using a BigInteger just complicates things, in fact it not clear why you want a byte[]. What are planing to do with the BigInteger or byte[]? What is the point?

share|improve this answer
String input = "0101";
BigInteger x = new BigInteger ( input , 2 );
String output = x.toString(2);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.