-
Packages that use DataOutput
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 server
side of RMI.
|
javax.imageio.stream |
A package of the Java Image I/O API dealing with low-level I/O from files and
streams.
|
javax.jnlp |
The JNLP API is designed to provide additional services to JNLP applications
running in the Java Plugin or launched by Java Web Start.
|
-
-
Subinterfaces of DataOutput in java.io
Modifier and Type |
Interface |
Description |
interface |
ObjectOutput |
ObjectOutput extends the DataOutput interface to include writing of objects.
|
Classes in java.io that implement DataOutput
Modifier and Type |
Class |
Description |
class |
DataOutputStream |
A data output stream lets an application write primitive Java data
types to an output stream in a portable way.
|
class |
ObjectOutputStream |
An ObjectOutputStream writes primitive data types and graphs of Java objects
to an OutputStream.
|
class |
RandomAccessFile |
Instances of this class support both reading and writing to a
random access file.
|
-
Methods in java.rmi.server with parameters of type DataOutput
Modifier and Type |
Method |
Description |
void |
UID.write(DataOutput out) |
Marshals a binary representation of this UID to
a DataOutput instance.
|
-
-