Example usage for Java java.io ObjectOutput fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Closes the stream. |
void | flush() Flushes the stream. |
Class> | getClass() Returns the runtime class of this Object . |
void | write(int b) Writes a byte. |
void | write(byte b[]) Writes an array of bytes. |
void | write(byte b[], int off, int len) Writes a sub array of bytes. |
void | writeBoolean(boolean v) Writes a boolean value to this output stream. |
void | writeByte(int v) Writes to the output stream the eight low- order bits of the argument v . |
void | writeBytes(String s) Writes a string to the output stream. |
void | writeChar(int v) Writes a char value, which is comprised of two bytes, to the output stream. |
void | writeDouble(double v) Writes a double value, which is comprised of eight bytes, to the output stream. |
void | writeFloat(float v) Writes a float value, which is comprised of four bytes, to the output stream. |
void | writeInt(int v) Writes an int value, which is comprised of four bytes, to the output stream. |
void | writeLong(long v) Writes a long value, which is comprised of eight bytes, to the output stream. |
void | writeObject(Object obj) Write an object to the underlying storage or stream. |
void | writeShort(int v) Writes two bytes to the output stream to represent the value of the argument. |
void | writeUTF(String s) Writes two bytes of length information to the output stream, followed by the modified UTF-8 representation of every character in the string s . |