public class CSVWriter extends RowWriter
A very simple CSV writer implementing RowWriter.
It works as any other RowWriter, but open must be called once before the first write operation.
It uses the format RFC 4180: http://tools.ietf.org/html/rfc4180
You can use your own separators and quote characters. By default the separator is the comma (,) and the quote character is the double quotes (") and autoquote is enabled.
See the CSVReader locale documentation or the SPARKSEE User Manual.
Check out the 'Data export' section in the SPARKSEE User Manual for more details on this.
Constructor and Description |
---|
CSVWriter()
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the writer.
|
void |
open(java.lang.String f)
Opens the output file path.
|
void |
setAutoQuotes(boolean autoquotes)
Sets on/off the automatic quote mode.
|
void |
setForcedQuotes(BooleanList forcequotes)
Disables the automatic quote mode and forces to be quoted those positions set to TRUE in the given vector.
|
void |
setLocale(java.lang.String localeStr)
Sets the locale that will be used to write the file.
|
void |
setQuotes(java.lang.String quotes)
Sets the character used to quote fields.
|
void |
setSeparator(java.lang.String sep)
Sets the character used to separate fields in the file.
|
void |
write(StringList row)
Writes the next row.
|
public void setSeparator(java.lang.String sep) throws java.lang.RuntimeException
sep
- [in] Separator character.java.lang.RuntimeException
- nullpublic void setAutoQuotes(boolean autoquotes)
If there are forced quotes, setting autoquotes on will clear them. If the autoquotes is set to off and no forced quotes are provided, there will not be any quote.
autoquotes
- [in] If TRUE it enables the automatic quote mode, if FALSE it disables it.public void open(java.lang.String f) throws java.io.IOException
f
- [in] Output file path.java.io.IOException
- If bad things happen opening the file.public void write(StringList row) throws java.lang.RuntimeException, java.io.IOException
public void setForcedQuotes(BooleanList forcequotes)
forcequotes
- [in] A booleanList with the position for each column that must be quoted set to true.public void close() throws java.lang.RuntimeException, java.io.IOException
public void setLocale(java.lang.String localeStr)
localeStr
- [in] The locale string for the file encoding.public void setQuotes(java.lang.String quotes) throws java.lang.RuntimeException
quotes
- [in] Quote character.java.lang.RuntimeException
- null