Class SimpleWriterExporterOutput

    • Constructor Detail

      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.lang.StringBuffer sbuffer)
        Creates a WriterExporterOutput instance which stores its result into the provided string buffer. Useful for just storing the result in a string for later use.
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.lang.StringBuilder sbuilder)
        Creates a WriterExporterOutput instance which stores its result into the provided string builder. Useful for just storing the result in a string for later use.
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.io.Writer writer)
        Creates a WriterExporterOutput instance that puts the result into the provided java.io.Writer object. This is useful for sending the export result to a character stream, such as the PrintWriter of a servlet.
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.io.OutputStream outputStream)
        Creates a WriterExporterOutput instance that puts the result into provided java.io.OutputStream object. This is useful for sending the export result to an output stream, such as a ServletOutputStream.
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.io.OutputStream outputStream,
                                          java.lang.String encoding)
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.io.File file)
        Creates a WriterExporterOutput instance that puts the result into the provided java.io.File object. This is useful when exporting to a file and the File instance is already there.
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.io.File file,
                                          java.lang.String encoding)
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.lang.String fileName)
        Creates a WriterExporterOutput instance that puts the result into the file designated by the provided file name. This is an alternative to the SimpleWriterExporterOutput(File).
      • SimpleWriterExporterOutput

        public SimpleWriterExporterOutput​(java.lang.String fileName,
                                          java.lang.String encoding)