Page 1 of 1

Subject - java programming I have error inside my code and I have bolded the errors inside my code.Fix the errors These

Posted: Fri May 20, 2022 6:04 pm
by answerhappygod
Subject - java programming
I have error inside my code and I have bolded the errors inside
my code.Fix the errors
These are the error logs :
package org.apache.commons.csv does not exist
can not find class CSV parser
cannot find class CSV Record
cannot find class CSV Fprmat
Code
import org.apache.commons.csv.CSVFormat;
import org.apache.commons.csv.CSVParser;
import org.apache.commons.csv.CSVRecord;
CSVParser csvParser = null;
csvParser = new
CSVParser(fileReader,
CSVFormat.DEFAULT.withTrim());
private String[] getRecordArray(CSVRecord
record) {
String[] result = new String[record.size()];
Iterator iterator = record.iterator();
for (int i = 0; i < record.size(); i++) {
result = iterator.next();
}
return result;
}