Class: java.io.DataOutputStream

A data output stream lets an application write primitive Java data types to an output stream in a portable way. An application can then use a data input stream to read the data back in.
Authors:
@author unascribed
See:
@see java.io.DataInputStream
Since:
@since JDK1.0

Inheritance

Superclass tree: Implements:

Methods

Fields

  • written

    protected int written
    The number of bytes written to the data output stream so far. If this counter overflows, it will be wrapped to Integer.MAX_VALUE.