Hello all,
This is a rather simple question. Does anyone know if there is a method for parsing an int into a string? I know you can do it the other way like:
String str = "9";
int num1 = Integer.parseInt(str);
But I need to convert an integer into a string. Any ideas?
Thanks,
Glen
This is a rather simple question. Does anyone know if there is a method for parsing an int into a string? I know you can do it the other way like:
String str = "9";
int num1 = Integer.parseInt(str);
But I need to convert an integer into a string. Any ideas?
Thanks,
Glen