Classes | |
class | ByteArrayInputStream |
A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream. An internal counter keeps track of the next byte to be supplied by the read method. More... | |
class | ByteArrayOutputStream |
This class implements an output stream in which the data is written into a byte array. The buffer automatically grows as data is written to it. The data can be retrieved using toByteArray() and toString(). More... | |
class | FileInputStream |
A FileInputStream obtains input bytes from a file in a file system. What files are available depends on the host environment. More... | |
class | FileOutputStream |
A file output stream is an output stream for writing data to a File or to a FileDescriptor. Whether or not a file is available or may be created depends upon the underlying platform. Some platforms, in particular, allow a file to be opened for writing by only one FileOutputStream (or other file-writing object) at a time. In such situations the constructors in this class will fail if the file involved is already open. More... | |
class | InputStream |
This abstract class is the superclass of all classes representing an input stream of bytes. More... | |
class | OutputStream |
This abstract class is the superclass of all classes representing an output stream of bytes. An output stream accepts output bytes and sends them to some sink. More... |