Package jxl.demo

Class CSV


  • public class CSV
    extends java.lang.Object
    Simple demo class which uses the api to present the contents of an excel 97 spreadsheet as comma separated values, using a workbook and output stream of your choice
    • Constructor Summary

      Constructors 
      Constructor Description
      CSV​(Workbook w, java.io.OutputStream out, java.lang.String encoding, boolean hide)
      Constructor
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • CSV

        public CSV​(Workbook w,
                   java.io.OutputStream out,
                   java.lang.String encoding,
                   boolean hide)
            throws java.io.IOException
        Constructor
        Parameters:
        w - The workbook to interrogate
        out - The output stream to which the CSV values are written
        encoding - The encoding used by the output stream. Null or unrecognized values cause the encoding to default to UTF8
        hide - Suppresses hidden cells
        Throws:
        java.io.IOException