Class TXTStream


  • public class TXTStream
    extends java.lang.Object
    Helper class for text streams.
    • Constructor Summary

      Constructors 
      Constructor Description
      TXTStream​(java.io.OutputStream os)
      Main constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void add​(java.lang.String str)
      Adds a String to the OutputStream
      void setDoOutput​(boolean doout)
      Controls whether output is actually written.
      void setEncoding​(java.lang.String encoding)
      Set the encoding for the text stream.
      • Methods inherited from class java.lang.Object

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

      • TXTStream

        public TXTStream​(java.io.OutputStream os)
        Main constructor.
        Parameters:
        os - OutputStream to write to
    • Method Detail

      • add

        public void add​(java.lang.String str)
        Adds a String to the OutputStream
        Parameters:
        str - String to add
      • setDoOutput

        public void setDoOutput​(boolean doout)
        Controls whether output is actually written.
        Parameters:
        doout - true to enable output, false to suppress
      • setEncoding

        public void setEncoding​(java.lang.String encoding)
        Set the encoding for the text stream.
        Parameters:
        encoding - the encoding, if null, "UTF-8" is chosen as default