I have an int and I want to convert it to a string. It should be simple, right? But the compiler complains that it cannot find the character when I do:
int tmpInt = 10; String tmpStr10 = String.valueof(tmpInt);
What is wrong with that? And how do I convert int (or long) to String?
android
JB_User Apr 05 '13 at 14:40 2013-04-05 14:40
source share