int x = 222 ;
String s = String.valueOf( x ); // s is now set to "222"
If you know that the string will be used in string concatenation, you can take advantage of a conversion that Java will do for you:
int x = 6 ;
System.out.println("I am " + x + " years old.");
And for a change of pace, you can visit my permaculture site.