Uses of Interface
java.io.DataInput
Packages that useDataInput Package Description java.io Provides for system input and output through data streams, serialization and the file system.java.rmi.server Provides classes and interfaces for supporting the serverside of RMI.javax.imageio.stream A package of the Java Image I/O API dealing with low-level I/O from files and streams.Uses ofDataInput injava.io
Subinterfaces ofDataInput injava.io Modifier and Type Interface Description interfaceObjectInputObjectInput extends the DataInput interface to include the reading of objects.Classes injava.io that implementDataInput Modifier and Type Class Description classDataInputStreamA data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way.classObjectInputStreamAn ObjectInputStream deserializes primitive data and objects previously written using an ObjectOutputStream.classRandomAccessFileInstances of this class support both reading and writing to a random access file.Methods injava.io with parameters of typeDataInput Modifier and Type Method Description staticStringDataInputStream. readUTF(DataInput in)Reads from the streamina representation of a Unicode character string encoded inmodified UTF-8 format; this string of characters is then returned as aString.Uses ofDataInput injava.rmi.server
Methods injava.rmi.server with parameters of typeDataInput Modifier and Type Method Description staticUIDUID. read(DataInput in)Constructs and returns a newUIDinstance by unmarshalling a binary representation from anDataInputinstance.Uses ofDataInput injavax.imageio.stream
Subinterfaces ofDataInput injavax.imageio.stream Modifier and Type Interface Description interfaceImageInputStreamA seekable input stream interface for use byImageReaders.interfaceImageOutputStreamA seekable output stream interface for use byImageWriters.Classes injavax.imageio.stream that implementDataInput Modifier and Type Class Description classFileCacheImageInputStreamAn implementation ofImageInputStreamthat gets its input from a regularInputStream.classFileCacheImageOutputStreamAn implementation ofImageOutputStreamthat writes its output to a regularOutputStream.classFileImageInputStreamAn implementation ofImageInputStreamthat gets its input from aFileorRandomAccessFile.classFileImageOutputStreamAn implementation ofImageOutputStreamthat writes its output directly to aFileorRandomAccessFile.classImageInputStreamImplAn abstract class implementing theImageInputStreaminterface.classImageOutputStreamImplAn abstract class implementing theImageOutputStreaminterface.classMemoryCacheImageInputStreamAn implementation ofImageInputStreamthat gets its input from a regularInputStream.classMemoryCacheImageOutputStreamAn implementation ofImageOutputStreamthat writes its output to a regularOutputStream.