| java.lang.Object | |
| ↳ | org.jfree.data.io.CSV |
A utility class for reading CategoryDataset data from a CSV file.
This initial version is very basic, and won't handle errors in the data
file very gracefully.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new CSV reader where the field delimiter is a comma, and the
text delimiter is a double-quote.
| |||||||||||
Creates a new reader with the specified field and text delimiters.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Reads a
CategoryDataset from a CSV file or input source. | |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
Creates a new CSV reader where the field delimiter is a comma, and the text delimiter is a double-quote.
Creates a new reader with the specified field and text delimiters.
| fieldDelimiter | the field delimiter (usually a comma, semi-colon, colon, tab or space). |
|---|---|
| textDelimiter | the text delimiter (usually a single or double quote). |
Reads a CategoryDataset from a CSV file or input source.
| in | the input source. |
|---|
| IOException | if there is an I/O problem. |
|---|