I want to parse the following CSV File:
02.01.15,Januar,GEZ,Telekommunikation,"€ 211,44",01_jährlich,Ist
02.01.15,Januar,BGV: Haftpfl. + Unfall,Versicherungen,"€ 171,95",01_jährlich,Ist
I use the following code for parsing:
CSVReader csvReader = new CSVReader(new FileReader(file));
String [] nextLine;
while ((nextLine = csvReader.readNext()) != null) {
for (String text : nextLine) {
System.out.print(text + " ");
}
System.out.println();
}
The output shows a vertically centered dot at the beginning of the first line. What is the problem?