com.ibm.as400.access

Class SCS5224Writer

  • All Implemented Interfaces:
    java.io.Closeable, java.io.Flushable, java.lang.Appendable
    Direct Known Subclasses:
    SCS5219Writer, SCS5553Writer


    public class SCS5224Writer
    extends SCS5256Writer
    The SCS5224Writer class writes an SCS 5224 data stream to an output stream, translating characters into bytes of the specified CCSID. SCS5224Writer extends the SCS5256Writer and adds support for setting the characters per inch (CPI) and lines per inch (LPI).
    See Also:
    SCS5256Writer
    • Field Summary

      • Fields inherited from class java.io.Writer

        lock
    • Constructor Summary

      Constructors 
      Constructor and Description
      SCS5224Writer(java.io.OutputStream out)
      Deprecated. 
      Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments.
      SCS5224Writer(java.io.OutputStream out, int ccsid)
      Deprecated. 
      Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments.
      SCS5224Writer(java.io.OutputStream out, int ccsid, AS400 system)
      Constructs a SCS5224Writer.
      SCS5224Writer(java.io.OutputStream out, java.lang.String encoding)
      Deprecated. 
      Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments.
    • Constructor Detail

      • SCS5224Writer

        public SCS5224Writer(java.io.OutputStream out)
        Deprecated. Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments.
        Constructs a SCS5224Writer. The default encoding will be used.
        Parameters:
        out - An OutputStream.
      • SCS5224Writer

        public SCS5224Writer(java.io.OutputStream out,
                     int ccsid)
                      throws java.io.UnsupportedEncodingException
        Deprecated. Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments.
        Constructs a SCS5224Writer.
        Parameters:
        out - An OutputStream.
        ccsid - The name of the target CCSID to be used.
        Throws:
        java.io.UnsupportedEncodingException - If ccsid is invalid.
      • SCS5224Writer

        public SCS5224Writer(java.io.OutputStream out,
                     int ccsid,
                     AS400 system)
                      throws java.io.UnsupportedEncodingException
        Constructs a SCS5224Writer.
        Parameters:
        out - An OutputStream.
        ccsid - The name of the target CCSID to be used.
        system - The system.
        Throws:
        java.io.UnsupportedEncodingException - If ccsid is invalid.
      • SCS5224Writer

        public SCS5224Writer(java.io.OutputStream out,
                     java.lang.String encoding)
                      throws java.io.UnsupportedEncodingException
        Deprecated. Replaced by SCS5224Writer(OutputStream, int, AS400). Any SCS5224Writer object that is created without specifying an AS400 system object on its constructor may not behave as expected in certain environments.
        Constructs a SCS5224Writer.
        Parameters:
        out - An OutputStream.
        encoding - The name of the target encoding to be used.
        Throws:
        java.io.UnsupportedEncodingException - If encoding is invalid.
    • Method Detail

      • setCPI

        public void setCPI(int cpi)
                    throws java.io.IOException
        Sets characters per inch. All following text will be in the set pitch.
        Parameters:
        cpi - The characters per inch. Valid values are 10 and 15.
        Throws:
        java.io.IOException - If an error occurs while communicating with the system.
      • setLPI

        public void setLPI(int lpi)
                    throws java.io.IOException
        Sets lines per inch. All following lines will be in the set lines per inch.
        Parameters:
        lpi - The lines per inch. Valid values are 4, 6, 8, 9, and 12.
        Throws:
        java.io.IOException - If an error occurs while communicating with the system.