Convert int to string

por favor digam.me!
thanks!

String.valueOf(1234)

Tente isso:

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

Ou a versao megaporca 3000GT:

String s = ""+123;

Nox Generation

Utilize, como o aborges falou, o método valueOF() para converter qualquer tipo (int, float, double) em String.

int x = 10; float y = 10.35; double z = 254.34; String a = String.valueOF(x); String b = String.valueOF(y); String c = String.valueOF(z);
Abraço.