|
Elexis API documentationVersion 2.1.6 as of December 11 2011 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectau.com.bytecode.opencsv.CSVReader
public class CSVReader
A very simple CSV reader released under a commercial-friendly license.
Field Summary | |
---|---|
static char |
DEFAULT_QUOTE_CHARACTER
The default quote character to use if none is supplied to the constructor. |
static char |
DEFAULT_SEPARATOR
The default separator to use if none is supplied to the constructor. |
static int |
DEFAULT_SKIP_LINES
The default line to start reading. |
Constructor Summary | |
---|---|
CSVReader(java.io.Reader reader)
Constructs CSVReader using a comma for the separator. |
|
CSVReader(java.io.Reader reader,
char separator)
Constructs CSVReader with supplied separator. |
|
CSVReader(java.io.Reader reader,
char separator,
char quotechar)
Constructs CSVReader with supplied separator and quote char. |
|
CSVReader(java.io.Reader reader,
char separator,
char quotechar,
int line)
Constructs CSVReader with supplied separator and quote char. |
Method Summary | |
---|---|
void |
close()
Closes the underlying reader. |
java.util.List |
readAll()
Reads the entire file into a List with each element being a String[] of tokens. |
java.lang.String[] |
readNext()
Reads the next line from the buffer and converts to a string array. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final char DEFAULT_SEPARATOR
public static final char DEFAULT_QUOTE_CHARACTER
public static final int DEFAULT_SKIP_LINES
Constructor Detail |
---|
public CSVReader(java.io.Reader reader)
reader
- the reader to an underlying CSV source.public CSVReader(java.io.Reader reader, char separator)
reader
- the reader to an underlying CSV source.separator
- the delimiter to use for separating entries.public CSVReader(java.io.Reader reader, char separator, char quotechar)
reader
- the reader to an underlying CSV source.separator
- the delimiter to use for separating entriesquotechar
- the character to use for quoted elementspublic CSVReader(java.io.Reader reader, char separator, char quotechar, int line)
reader
- the reader to an underlying CSV source.separator
- the delimiter to use for separating entriesquotechar
- the character to use for quoted elementsline
- the line number to skip for start readingMethod Detail |
---|
public java.util.List readAll() throws java.io.IOException
java.io.IOException
- if bad things happen during the readpublic java.lang.String[] readNext() throws java.io.IOException
java.io.IOException
- if bad things happen during the readpublic void close() throws java.io.IOException
java.io.IOException
- if the close fails
|
Elexis API documentationVersion 2.1.6 as of December 11 2011 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |