I can convert an integer into string using
String s = \"\" + 4; // correct, but poor style or String u = Integer.toString(4); // this is good
I
Appending a double quote is a bad way of doing it especially for readability. I would consider using some of the Apache util classes for conversion or writing your own utility methods for doing this type of stuff.