Package org.jfree.data.xml
Class DatasetReader
java.lang.Object
org.jfree.data.xml.DatasetReader
public class DatasetReader extends Object
A utility class for reading datasets from XML.
-
Constructor Summary
Constructors Constructor Description DatasetReader() -
Method Summary
Modifier and Type Method Description static CategoryDatasetreadCategoryDatasetFromXML(File file)Reads aCategoryDatasetfrom a file.static CategoryDatasetreadCategoryDatasetFromXML(InputStream in)Reads aCategoryDatasetfrom a stream.static PieDatasetreadPieDatasetFromXML(File file)Reads aPieDatasetfrom an XML file.static PieDatasetreadPieDatasetFromXML(InputStream in)Reads aPieDatasetfrom a stream.
-
Constructor Details
-
DatasetReader
public DatasetReader()
-
-
Method Details
-
readPieDatasetFromXML
Reads aPieDatasetfrom an XML file.- Parameters:
file- the file.- Returns:
- A dataset.
- Throws:
IOException- if there is a problem reading the file.
-
readPieDatasetFromXML
Reads aPieDatasetfrom a stream.- Parameters:
in- the input stream.- Returns:
- A dataset.
- Throws:
IOException- if there is an I/O error.
-
readCategoryDatasetFromXML
Reads aCategoryDatasetfrom a file.- Parameters:
file- the file.- Returns:
- A dataset.
- Throws:
IOException- if there is a problem reading the file.
-
readCategoryDatasetFromXML
Reads aCategoryDatasetfrom a stream.- Parameters:
in- the stream.- Returns:
- A dataset.
- Throws:
IOException- if there is a problem reading the file.
-