i intend to read lines of numbers separated by comma's example below
08090417241, 080904152335, 080998766231, 080913456786, 08035467901, 08070415243, 080675534387, 080355525288, 080345887698, 0809966355343, ...
to the last number.
The original code I used in my program is this
String file1 = FileArea6.getText();
This gives an error when I try to read the numbers with the above example. But when the numbers are arranged in the order below, it's read perfectly.
08035467901
08035474477
08024444448
08012233333
09033222333.......
What is the right way to read using the first example, i.e. separated by comma's?