| Package | Description |
|---|---|
| java.io |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DataInput
The DataInput interface provides for reading bytes from a binary stream and reconstructing from them data in any of the Java primitive types.
|
interface |
DataOutput
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.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ByteArrayInputStream
A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream.
|
class |
ByteArrayOutputStream
This class implements an output stream in which the data is written into a byte array.
|
class |
DataInputStream
A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way.
|
class |
DataOutputStream
A data output stream lets an application write primitive Java data types to an output stream in a portable way.
|
class |
InputStream
This abstract class is the superclass of all classes representing an input stream of bytes.
|
class |
InputStreamReader
An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and translates them into characters.
|
class |
OutputStream
This abstract class is the superclass of all classes representing an output stream of bytes.
|
class |
OutputStreamWriter
An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are translated into bytes.
|
class |
PrintStream
A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently.
|
class |
Reader
Abstract class for reading character streams.
|
class |
StringReader
A specialized
Reader that reads characters from a String in
a sequential manner. |
class |
StringWriter |
class |
Writer
Abstract class for writing to character streams.
|
Copyright © 2024. All rights reserved.