Uses of Class
org.evolvis.tartools.csvfile.CSVFile

  • Uses of CSVFile in org.evolvis.tartools.csvfile

    Modifier and Type
    Class
    Description
    class 
    CSVFileReader is a class derived from CSVFile used to parse an existing CSV file.
    class 
    CSVFileWriter is a class derived from CSVFile used to format some fields into a new CSV file.
    class 
    CSVFileReader subclass to read the SSV format: Line feed (0x0A) is row separator Unit separator (0x1F) is column separator No quote or escape characters are used Carriage return (0x0D) represents embedded newline Cell content is arbitrary binary except 0x0A, 0x1F (and NUL) Warning: Versions prior to CSVFile 3.0 mistakenly used File separator (0x1C) as field separator.
    class 
    CSVFileWriter subclass to write the SSV format: Line feed (0x0A) is row separator Unit separator (0x1F) is column separator No quote or escape characters are used Carriage return (0x0D) represents embedded newline Cell content is arbitrary binary except 0x0A, 0x1F (and NUL) Warning: Versions prior to CSVFile 3.0 mistakenly used File separator (0x1C) as field separator.