|
| void | SetSeparator (System.String sep) throws System.ApplicationException |
| | Sets the character used to separate fields in the file.
|
| |
| void | SetNumLines (int numLines) |
| | Used to limit the number of lines that will be read.
|
| |
| void | Close () throws System.IO.IOException |
| | Closes the reader.
|
| |
| void | SetLocale (System.String localeStr) |
| | Sets the locale that will be used to read the file.
|
| |
| bool | Read (com.sparsity.sparksee.gdb.StringList row) throws System.IO.IOException |
| | Reads the next row as a string array.
|
| |
| void | SetMultilines (int numExtralines) |
| | Allows the use of fields with more than one line.
|
| |
| void | Open (System.String filePath) throws System.IO.IOException |
| | Opens the source file path.
|
| |
| bool | Reset () throws System.IO.IOException |
| | Moves the reader to the beginning.
|
| |
| void | SetStartLine (int startLine) |
| | Sets the number of lines to be skiped from the beginning.
|
| |
|
void | SetSingleLine () |
| | Only allows single line fields.
|
| |
| int | GetRow () throws System.IO.IOException |
| | The row number for the current row.
|
| |
|
| CSVReader () |
| | Constructs CSVReader.
|
| |
| void | SetQuotes (System.String quotes) throws System.ApplicationException |
| | Sets the character used to quote fields.
|
| |
CSVReader interface.
A very simple CSV reader.
It works as any other RowReader, but open must be called once before the first read operation.
Using the format RFC 4180.
Except: leading and trailing spaces, adjacent to CSV separator character, are trimmed.
You can use your own separators and quote characters. By default the separator is the comma (,) and the quote character is the double quotes (").
Fields with multiple lines can be allowed (and the maximum lines specified),
but the default is a single line.
The locale string can be used to set the language, country and the file
encoding. The format must be "[language_territory][.codeset]". But
only the file encoding is being used in the current version.
The languages supported are: "en_US", "es_ES" and "ca_ES". <br>
The file encodings supported are: "utf8" and "iso88591".
For example:
To don't change the default locales, use an empty string: "".<br>
To read a file in utf8 with the default language settings use ".utf8".<br>
To read a file in iso88591 with English language use: "en_US.iso88591".
Check out the 'Data import' section in the SPARKSEE User Manual for more details on this.
- Author
- Sparsity Technologies http://www.sparsity-technologies.com