borland Packages  borland Class Hierarchy

Package borland.jbcl.io


About the io package

The JBCL io package contains specialized classes for input and output.

See also:


Interfaces

  • FileSystem
  • TraverseAction
  • Classes and Components

  • AsciiInputStream
  • AsciiOutputStream
  • BufferedInputFile
  • ByteToCharJava
  • CharToByteJava
  • EncodedInputStream
  • EncodedOutputStream
  • FastBufferedInputStream
  • FastBufferedOutputStream
  • JavaOutputStreamWriter
  • LocalFileSystem
  • ResTable
  • SimpleCharInputStream
  • SimpleCharOutputStream

  • Overview of classes in the io package

    AsciiInputStream - An implementation of SimpleCharInputStream that is optimized for data where most of the characters belong to either the ASCII character set or the 8859_1 character set. Other characters are assumed to be encoded in Unicode escapes.
    AsciiOutputStream - An implementation of SimpleCharOutputStream that is optimized for data where most of the characters belong to either the ASCII character set or the 8859_1 character set. Other characters are assumed to be encoded in Unicode escapes.

    EncodedInputStream - An implementation of SimpleCharInputStream that is optimized for data where most of the characters belong to the specified character set. Other characters are assumed to be encoded in Unicode escapes.
    EncodedOutputStream - An implementation of SimpleCharOutputStream that is optimized for data where most of the characters belong to the specified character set. Other characters are assumed to be encoded in Unicode escapes.

    FastBufferedInputStream - An unsynchronized buffered input stream to read in characters from a stream without causing a read every time.
    FastBufferedOutputStream - An unsynchronized buffered output stream to read out characters from a stream without causing a read every time.

    JavaOutputStreamWriter - Writes characters to an output stream, translating characters into bytes according to a specified character encoding, using Unicode escape sequences if necessary.

    SimpleCharInputStream - This abstract class provides the capability of reading input one line at a time.
    SimpleCharOutputStream - This abstract class provides the ability to write complete strings, arbitrarily-delimited strings, and terminated lines.