2012/8/27
String str = yourInt +"";
String test1 = ""; int test2 = 150; test1 = String.valueOf(test2);
String test1 = ""; int test2 = 150; test1 = Integer.toString(test2);
X