Class CSVOpenCSVImpl

  • All Implemented Interfaces:
    ICSV

    public class CSVOpenCSVImpl
    extends java.lang.Object
    implements ICSV
    • Constructor Summary

      Constructors 
      Constructor Description
      CSVOpenCSVImpl()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      ICSVReader createReader​(java.io.InputStream is, CSVConfig importConfig)
      Returns a new ICSVReader that can be used to read data from the InputStream in CSV format.
      ICSVWriter createWriter​(java.io.OutputStream os, CSVConfig importConfig)
      Returns a new ICSVWriter that can be used to write data to a new OutputStream in CSV format.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CSVOpenCSVImpl

        public CSVOpenCSVImpl()
    • Method Detail

      • createReader

        public ICSVReader createReader​(java.io.InputStream is,
                                       CSVConfig importConfig)
                                throws java.io.IOException
        Description copied from interface: ICSV
        Returns a new ICSVReader that can be used to read data from the InputStream in CSV format. The caller is responsible for calling ICSVReader.close() on the writer.
        Specified by:
        createReader in interface ICSV
        Returns:
        Throws:
        java.io.IOException
      • createWriter

        public ICSVWriter createWriter​(java.io.OutputStream os,
                                       CSVConfig importConfig)
                                throws java.io.IOException
        Description copied from interface: ICSV
        Returns a new ICSVWriter that can be used to write data to a new OutputStream in CSV format. The caller is responsible for calling ICSVWriter.close() on the writer.
        Specified by:
        createWriter in interface ICSV
        Returns:
        Throws:
        java.io.IOException