How can i convert the ints in a 2d array into chars, and strings? (seperately)
If i copy ints to a char array i just get the ascii code.
For example
public int a[5][5]
//some code
public String b[5][5] = public int a[5][5]
Thanks
feedback
|
|
This question is not very well-phrased at all. I THINK what you're asking is how to convert a two-level array of type Quite frankly, the easiest approach would simply leave your array as-is... and convert
Alternatively, you could start with a
If you really do need to convert an array of type
All three of these approaches would work equally well for conversion to type | |||
|
feedback
|
|
Your code must basically go through your array and transform each int value into a String. You can do this with the You can try that :
| |||
|
feedback
|
|
If you want the int number as a string then you can use the
| |||
|
feedback
|
| |||
|
feedback
|