I have a problem with java. I'm basically using the CSVParser library to read CSV files. when I go to iterate a record it gives me the error. I'll post the code.
Reader in = new FileReader(path);
CSVParser parse = CSVFormat.DEFAULT.withHeader().withDelimiter(';').parse(in);
for (CSVRecord record : parse) {
}