-
j2me
hello , I am new to j2me.
i have a file having two columns, which has double values, i want to parse it and store those values in two different arrays depending on the columns.
i tried it, and parsed it entirely in a single string.
i also have thought of a result: parsing it line by line -> separating it by delimeter -> and separating it in two arrays..
but iam unable to find functions for these operations
can anyone help me..
-
Re: j2me
Use StringTokenizer for line by line reading or with any delimiter specified. plain old indexOf() and SubString() can also help.