|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.jooq.tools.csv.CSVReader
public class CSVReader
A very simple CSV reader released under a commercial-friendly license.
| Field Summary | |
|---|---|
static int |
DEFAULT_SKIP_LINES
The default line to start reading. |
| Constructor Summary | |
|---|---|
CSVReader(Reader reader)
Constructs CSVReader using a comma for the separator. |
|
CSVReader(Reader reader,
char separator)
Constructs CSVReader with supplied separator. |
|
CSVReader(Reader reader,
char separator,
char quotechar)
Constructs CSVReader with supplied separator and quote char. |
|
CSVReader(Reader reader,
char separator,
char quotechar,
boolean strictQuotes)
Constructs CSVReader with supplied separator, quote char and quote handling behavior. |
|
CSVReader(Reader reader,
char separator,
char quotechar,
char escape)
Constructs CSVReader with supplied separator and quote char. |
|
CSVReader(Reader reader,
char separator,
char quotechar,
char escape,
int line)
Constructs CSVReader with supplied separator and quote char. |
|
CSVReader(Reader reader,
char separator,
char quotechar,
char escape,
int line,
boolean strictQuotes)
Constructs CSVReader with supplied separator and quote char. |
|
CSVReader(Reader reader,
char separator,
char quotechar,
char escape,
int line,
boolean strictQuotes,
boolean ignoreLeadingWhiteSpace)
Constructs CSVReader with supplied separator and quote char. |
|
CSVReader(Reader reader,
char separator,
char quotechar,
int line)
Constructs CSVReader with supplied separator and quote char. |
|
| Method Summary | |
|---|---|
void |
close()
Closes the underlying reader. |
List<String[]> |
readAll()
Reads the entire file into a List with each element being a String[] of tokens. |
String[] |
readNext()
Reads the next line from the buffer and converts to a string array. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final int DEFAULT_SKIP_LINES
| Constructor Detail |
|---|
public CSVReader(Reader reader)
reader - the reader to an underlying CSV source.
public CSVReader(Reader reader,
char separator)
reader - the reader to an underlying CSV source.separator - the delimiter to use for separating entries.
public CSVReader(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 elements
public CSVReader(Reader reader,
char separator,
char quotechar,
boolean strictQuotes)
reader - the reader to an underlying CSV source.separator - the delimiter to use for separating entriesquotechar - the character to use for quoted elementsstrictQuotes - sets if characters outside the quotes are ignored
public CSVReader(Reader reader,
char separator,
char quotechar,
char escape)
reader - the reader to an underlying CSV source.separator - the delimiter to use for separating entriesquotechar - the character to use for quoted elementsescape - the character to use for escaping a separator or quote
public CSVReader(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 reading
public CSVReader(Reader reader,
char separator,
char quotechar,
char escape,
int line)
reader - the reader to an underlying CSV source.separator - the delimiter to use for separating entriesquotechar - the character to use for quoted elementsescape - the character to use for escaping a separator or quoteline - the line number to skip for start reading
public CSVReader(Reader reader,
char separator,
char quotechar,
char escape,
int line,
boolean strictQuotes)
reader - the reader to an underlying CSV source.separator - the delimiter to use for separating entriesquotechar - the character to use for quoted elementsescape - the character to use for escaping a separator or quoteline - the line number to skip for start readingstrictQuotes - sets if characters outside the quotes are ignored
public CSVReader(Reader reader,
char separator,
char quotechar,
char escape,
int line,
boolean strictQuotes,
boolean ignoreLeadingWhiteSpace)
reader - the reader to an underlying CSV source.separator - the delimiter to use for separating entriesquotechar - the character to use for quoted elementsescape - the character to use for escaping a separator or quoteline - the line number to skip for start readingstrictQuotes - sets if characters outside the quotes are ignoredignoreLeadingWhiteSpace - it true, parser should ignore white space
before a quote in a field| Method Detail |
|---|
public List<String[]> readAll()
throws IOException
IOException - if bad things happen during the read
public String[] readNext()
throws IOException
IOException - if bad things happen during the read
public void close()
throws IOException
close in interface CloseableIOException - if the close fails
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||