
com.tecacet.jflat8.impl.DefaultCSVReader Maven / Gradle / Ivy
Go to download
Convert flat files to Java Beans and vice versa.
Some supported formats are CSV, fixed-width, arbitrary regex, and more.
JFlat 8 is highly extensible and can be adopted to support additional formats.
package com.tecacet.jflat8.impl;
import com.tecacet.jflat8.CSVFileFormat;
public class DefaultCSVReader extends CSVFlatFileReader {
public DefaultCSVReader() {
this(CSVFileFormat.defaultFormat());
}
public DefaultCSVReader(CSVFileFormat csvFormat) {
super(new ArrayBeanMapper(), csvFormat);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy