How to convert from int to string

Can anyone help me on how to convert int to string?Thanks,Q
[80 byte] By [katroxi] at [2007-9-27 21:42:33]
# 1
String.valueOf( int i )
swatidalmia at 2007-7-7 3:41:01 > top of Java-index,Other Topics,Patterns & OO Design...
# 2
int i = 3String S = i + ""i will be promoted to String automatically when the above expression is evaluated
cpolaku at 2007-7-7 3:41:01 > top of Java-index,Other Topics,Patterns & OO Design...
# 3
Integer.toString(int i);and more...Float.toString(float f);Double.toString(double d);
mvasenkov at 2007-7-7 3:41:01 > top of Java-index,Other Topics,Patterns & OO Design...
# 4
String.valueOf( int i ) is the efficient way of chaning an int to string out of all the solutions
swatidalmia at 2007-7-7 3:41:01 > top of Java-index,Other Topics,Patterns & OO Design...