how to convert this string into two dimensional array using java
- by Karthi
Hi friends,
I have text file as
0B85 61
0B86 6161
0B86 41
0B87 69
0B88 6969
0B88 49
0B89 75
0B8A 7575
0B8F 6565
I want to write this string into two dimensional array. (i.e) String read[0][0]=0B85 and String read[0][1]=61.
Please suggest any idea to do this using java. Thanks in advance.