Im reading from a .csv file and I'm getting this weird numbers at the start of each line
12195820118109888100071.53 something like this, what do you think it could be my mistake
while ((line = bufRdr.readLine()) != null) {
input = line.split(",");
System.out.println(line);
That is what im using and printing each line. The first line is correct, but the second line onwards I see a string of numbers like this: 69363520177627835700077.119
. Help me please.