how to convert this string into two dimensional array using java
Posted
by Karthi
on Stack Overflow
See other posts from Stack Overflow
or by Karthi
Published on 2010-05-17T07:16:45Z
Indexed on
2010/05/17
7:20 UTC
Read the original article
Hit count: 198
java
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.
© Stack Overflow or respective owner