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

Given a number:

int number = 1234;

Which would be the "best" way to convert this to a string:

String stringNumber = "1234";

I have tried searching (googling) for an answer but no many seemed "trustworthy".

share|improve this question

3 Answers

up vote 24 down vote accepted

There are multiple ways:

  • String.valueOf(number) (my preference)
  • "" + number (I don't know how the compiler handles it, perhaps it is as efficient as the above)
  • Integer.toString(number)
share|improve this answer
I'll give it a go! thank you! BTW I had read about concatenation, but for some reason it feels like a hack more that a solution (not a technical assessment) thanks!! – Trufa Feb 21 '11 at 20:45
1  
@Trufa - I would use valueOf() out of these 3. – CoolBeans Feb 21 '11 at 20:52
I checked the source code (1.6.0.24 Sun) and the first and third options are basically identical. String.valueOf(int) delegates to Integer.toString(int) for radixes of 10. – prasopes Feb 21 '11 at 22:41
1  
@stoupa - yes, but you can use String.valueOf(..) with any argument. – Bozho Feb 21 '11 at 22:55

Integer class has static method toString() - you can use it:

int i = 1234;
String str = Integer.toString(i);

Returns a String object representing the specified integer. The argument is converted to signed decimal representation and returned as a string, exactly as if the argument and radix 10 were given as arguments to the toString(int, int) method.

share|improve this answer
Thank you, useful information! – Trufa Feb 21 '11 at 20:59

This will do. Pretty trustworthy. : )

    ""+number;
share|improve this answer
Thank you very much, this actually woks I don't like it though (nothing technical about my dislike) I just "feel" like it is a hack, not a real solution (probably not true). – Trufa Feb 21 '11 at 21:00

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.