Module java.base

Package java.io


package java.io
Provides for system input and output through data streams, serialization and the file system. Unless otherwise noted, passing a null argument to a constructor or method in any class or interface in this package will cause a NullPointerException to be thrown.

Object Serialization

Warning: Deserialization of untrusted data is inherently dangerous and should be avoided. Untrusted data should be carefully validated according to the "Serialization and Deserialization" section of the Secure Coding Guidelines for Java SE.

Since:
1.0
  • Class
    Description
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the input and to support the mark and reset methods.
    The class implements a buffered output stream.
    Reads text from a character-input stream, buffering characters so as to provide for the efficient reading of characters, arrays, and lines.
    Writes text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings.
    A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream.
    This class implements an output stream in which the data is written into a byte array.
    This class implements a character buffer that can be used as a character-input stream.
    This class implements a character buffer that can be used as an Writer.
    Base class for character conversion exceptions.
    A Closeable is a source or destination of data that can be closed.
    Methods to access the character-based console device, if any, associated with the current Java virtual machine.
    The DataInput interface provides for reading bytes from a binary stream and reconstructing from them data in any of the Java primitive types.
    A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way.
    The DataOutput interface provides for converting data from any of the Java primitive types to a series of bytes and writing these bytes to a binary stream.
    A data output stream lets an application write primitive Java data types to an output stream in a portable way.
    Signals that an end of file or end of stream has been reached unexpectedly during input.
    Only the identity of the class of an Externalizable instance is written in the serialization stream and it is the responsibility of the class to save and restore the contents of its instances.
    An abstract representation of file and directory pathnames.
    Instances of the file descriptor class serve as an opaque handle to the underlying machine-specific structure representing an open file, an open socket, or another source or sink of bytes.
    A filter for abstract pathnames.
    A FileInputStream obtains input bytes from a file in a file system.
    Instances of classes that implement this interface are used to filter filenames.
    Signals that an attempt to open the file denoted by a specified pathname has failed.
    A file output stream is an output stream for writing data to a File or to a FileDescriptor.
    This class represents access to a file or directory.
    Reads text from character files using a default buffer size.
    Writes text to character files using a default buffer size.
    A FilterInputStream contains some other input stream, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.
    This class is the superclass of all classes that filter output streams.
    Abstract class for reading filtered character streams.
    Abstract class for writing filtered character streams.
    A Flushable is a destination of data that can be flushed.
    This abstract class is the superclass of all classes representing an input stream of bytes.
    An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and decodes them into characters using a specified charset.
    Signals that an I/O operation has been interrupted.
    Thrown when the Serialization runtime detects one of the following problems with a Class.
    Indicates that one or more deserialized objects failed validation tests.
    Thrown when a serious I/O error has occurred.
    Signals that an I/O exception of some sort has occurred.
    Deprecated.
    This class incorrectly assumes that bytes adequately represent characters.
    A buffered character-input stream that keeps track of line numbers.
    Thrown when serialization or deserialization is not active.
    Thrown when an instance is required to have a Serializable interface.
    ObjectInput extends the DataInput interface to include the reading of objects.
    Filter classes, array lengths, and graph metrics during deserialization.
    A utility class to set and get the JVM-wide deserialization filter factory, the static JVM-wide filter, or to create a filter from a pattern string.
    FilterInfo provides access to information about the current object being deserialized and the status of the ObjectInputStream.
    The status of a check on the class, array length, number of references, depth, and stream size.
    An ObjectInputStream deserializes primitive data and objects previously written using an ObjectOutputStream.
    Provide access to the persistent fields read from the input stream.
    Callback interface to allow validation of objects within a graph.
    ObjectOutput extends the DataOutput interface to include writing of objects.
    An ObjectOutputStream writes primitive data types and graphs of Java objects to an OutputStream.
    Provide programmatic access to the persistent fields to be written to ObjectOutput.
    Serialization's descriptor for classes.
    Constants written into the Object Serialization Stream.
    Superclass of all exceptions specific to Object Stream classes.
    A description of a Serializable field from a Serializable class.
    Exception indicating the failure of an object read operation due to unread primitive data, or the end of data belonging to a serialized object in the stream.
    This abstract class is the superclass of all classes representing an output stream of bytes.
    An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are encoded into bytes using a specified charset.
    A piped input stream should be connected to a piped output stream; the piped input stream then provides whatever data bytes are written to the piped output stream.
    A piped output stream can be connected to a piped input stream to create a communications pipe.
    Piped character-input streams.
    Piped character-output streams.
    A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently.
    Prints formatted representations of objects to a text-output stream.
    A PushbackInputStream adds functionality to another input stream, namely the ability to "push back" or "unread" bytes, by storing pushed-back bytes in an internal buffer.
    A character-stream reader that allows characters to be pushed back into the stream.
    Instances of this class support both reading and writing to a random access file.
    Abstract class for reading character streams.
    A SequenceInputStream represents the logical concatenation of other input streams.
    Indicates that an annotated field or method is part of the serialization mechanism defined by the Java Object Serialization Specification.
    Serializability of a class is enabled by the class implementing the java.io.Serializable interface.
    This class is for Serializable permissions.
    Thrown when control information that was read from an object stream violates internal consistency checks.
    The StreamTokenizer class takes an input stream and parses it into "tokens", allowing the tokens to be read one at a time.
    Deprecated.
    This class does not properly convert characters into bytes.
    A character stream whose source is a string.
    A character stream that collects its output in a string buffer, which can then be used to construct a string.
    Signals that a sync operation has failed.
    Wraps an IOException with an unchecked exception.
    The Character Encoding is not supported.
    Signals that a malformed string in modified UTF-8 format has been read in a data input stream or by any class that implements the data input interface.
    Signals that one of the ObjectStreamExceptions was thrown during a write operation.
    Abstract class for writing to character streams.