Package org.esa.snap.core.util.io
Class CsvWriter
- java.lang.Object
-
- java.io.Writer
-
- org.esa.snap.core.util.io.CsvWriter
-
- All Implemented Interfaces:
Closeable,Flushable,Appendable,AutoCloseable
public class CsvWriter extends Writer
- See Also:
CsvReader
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()voidwrite(char[] cbuf, int off, int len)voidwriteRecord(double... values)voidwriteRecord(String... values)
-
-
-
Method Detail
-
writeRecord
public void writeRecord(String... values) throws IOException
- Throws:
IOException
-
writeRecord
public void writeRecord(double... values) throws IOException- Throws:
IOException
-
write
public void write(char[] cbuf, int off, int len) throws IOException- Specified by:
writein classWriter- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Specified by:
flushin classWriter- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classWriter- Throws:
IOException
-
-