All Packages Class Hierarchy This Package Previous Next Index
Class harpoon.ClassFile.Raw.ClassDataOutputStream
java.lang.Object
|
+----java.io.OutputStream
|
+----java.io.FilterOutputStream
|
+----java.io.DataOutputStream
|
+----harpoon.ClassFile.Raw.ClassDataOutputStream
- public class ClassDataOutputStream
- extends DataOutputStream
A specialized output stream writer for java bytecode files.
- Version:
- $Id: ClassDataOutputStream.java,v 1.7 1998/10/11 03:01:12 cananian Exp $
- Author:
- C. Scott Ananian <cananian@alumni.princeton.edu>
- See Also:
- ClassDataInputStream
-
ClassDataOutputStream(OutputStream)
- Constructs a
ClassDataOutputStream
from a standard
OutputStream
.
-
write_u1(int)
- Write an unsigned one-byte quantity, high byte first.
-
write_u2(int)
- Write an unsigned two-byte quantity, high byte first.
-
write_u4(long)
- Write an unsigned four-byte quantity, high byte first.
ClassDataOutputStream
public ClassDataOutputStream(OutputStream out)
- Constructs a
ClassDataOutputStream
from a standard
OutputStream
.
write_u1
public final void write_u1(int v) throws IOException
- Write an unsigned one-byte quantity, high byte first.
write_u2
public final void write_u2(int v) throws IOException
- Write an unsigned two-byte quantity, high byte first.
write_u4
public final void write_u4(long v) throws IOException
- Write an unsigned four-byte quantity, high byte first.
All Packages Class Hierarchy This Package Previous Next Index