net.sf.flatpack.writer.WriterFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flatpack Show documentation
Show all versions of flatpack Show documentation
Simple Java delimited and fixed width file parser. Handles CSV, Excel CSV, Tab, Pipe delimiters, just to name a few.
Maps column positions in the file to user friendly names via XML. See FlatPack Feature List under News for complete feature list.
package net.sf.flatpack.writer;
import java.io.IOException;
/**
*
* @author Dirk Holmes and Holger Holger Hoffstatte
*/
public interface WriterFactory {
Writer createWriter(java.io.Writer out) throws IOException;
}