AbstractCsvWriter not FileLock friendly
A fast, programmer-friendly, free CSV library for Java
Brought to you by:
jamesbassett,
kbg
I concur, needs flush() for the outStream. It was simple enough to add, requiring a prototype,
void flush() throws IOException;
in icsv*.java,
public void flush () throws IOException { outStream.flush(); }
in abstractcsvwriter.java, and an overriden function,
@Override public void flush() throws IOException { super .flush(); }
in csv*.java.
The AbstractCsvWriter should extend Writer so that it can be used as any Writer stream to more easily allow chained streams.
This will be available in the upcoming release!