Uses of Class
org.djutils.data.serialization.TextSerializationException
-
Packages that use TextSerializationException Package Description org.djutils.data.csv The csv package takes care of reading and writing of data in csv / tsv format to/from files or streams.org.djutils.data.json The json package takes care of reading and writing of data in json format to/from files or streams.org.djutils.data.serialization The serialization package takes care of (de)serializing data of different types to/from Strings.org.djutils.data.xml The xml package takes care of reading and writing of data in xml format to/from files or streams. -
-
Uses of TextSerializationException in org.djutils.data.csv
Methods in org.djutils.data.csv that throw TextSerializationException Modifier and Type Method Description static Table
CsvData. readData(Reader reader, Reader metaReader)
Read the data from the CSV-file into the data table.static Table
CsvData. readData(Reader reader, Reader metaReader, char separator, char quotechar)
Read the data from the CSV-file into the data table.static Table
CsvData. readData(String filename, String metaFilename)
Read the data from the CSV-file into the data table.static Table
TsvData. readData(Reader reader, Reader metaReader)
Read the data from the TSV-file into the data table.static Table
TsvData. readData(String filename, String metaFilename)
Read the data from the TSV-file into the data table.static Table
CsvData. readZippedData(String fileName, String csvName, String metaName)
Read the data from a CSV-file inside a zip file.static Table
CsvData. readZippedData(String fileName, String csvName, String metaName, char separator, char quotechar)
Read the data from a CSV-file inside a zip file.static Table
TsvData. readZippedData(String fileName, String tsvName, String metaName)
Read the data from a TSV-file inside a zip file.static void
CsvData. writeData(Writer writer, Writer metaWriter, Table table)
Write the data from the data table in CSV format.static void
CsvData. writeData(Writer writer, Writer metaWriter, Table table, char separator, char quotechar, de.siegmar.fastcsv.writer.LineDelimiter lineDelimiter)
Write the data from the data table in CSV format.static void
CsvData. writeData(String filename, String metaFilename, Table table)
Write the data from the data table in CSV format.static void
TsvData. writeData(Writer writer, Writer metaWriter, Table dataTable)
Write the data from the data table in TSV format.static void
TsvData. writeData(String filename, String metaFilename, Table dataTable)
Write the data from the data table in TSV format.static void
CsvData. writeZippedData(CompressedFileWriter writer, String csvName, String metaName, Table table)
Write the data from the data table in CSV format.static void
CsvData. writeZippedData(CompressedFileWriter writer, String csvName, String metaName, Table table, char separator, char quotechar, de.siegmar.fastcsv.writer.LineDelimiter lineDelimiter)
Write the data from the data table in CSV format.static void
TsvData. writeZippedData(CompressedFileWriter writer, String tsvName, String metaName, Table table)
Write the data from the data table in TSV format. -
Uses of TextSerializationException in org.djutils.data.json
Methods in org.djutils.data.json that throw TextSerializationException Modifier and Type Method Description static Table
JsonData. readData(Reader reader)
Read the data from the csv-file into the data table.static Table
JsonData. readData(String filename)
Read the data from the csv-file into the data table.static void
JsonData. writeData(Writer writer, Table dataTable)
Write the data from the data table in JSON format.static void
JsonData. writeData(String filename, Table dataTable)
Write the data from the data table in JSON format. -
Uses of TextSerializationException in org.djutils.data.serialization
Methods in org.djutils.data.serialization that throw TextSerializationException Modifier and Type Method Description static TextSerializer<?>
TextSerializer. resolve(Class<?> valueClass)
Resolve the correct (de)serializer for the given class, and return an instance of the (de)serializer. -
Uses of TextSerializationException in org.djutils.data.xml
Methods in org.djutils.data.xml that throw TextSerializationException Modifier and Type Method Description static Table
XmlData. readData(Reader reader)
Read the data from the XML-file into the data table.static Table
XmlData. readData(String filename)
Read the data from the XML-file into the data table.static void
XmlData. writeData(Writer writer, Table dataTable)
Write the data from the data table in XML format.static void
XmlData. writeData(String filename, Table dataTable)
Write the data from the data table in XML format.
-