Hello,
Im trying to turn an int Array into a String.
For instance: if I have a an int i [] = {1,2,3}; I want the String to be 123.
I had no problem converting a char Array, but the same method wont work for an int Array. (See below)
char c [] = {'a','b','c'};
String strChar = new String(c);
//the following will give you a "cannot find symbol" error when compiling
int i [] = {1,2,3};
String strInt = new String(i);
Any simple way to circumvent this problem?
Thanks in advance for all comments/answers!