Java java.io ObjectOutput fields, constructors, methods, implement or subclass

Example usage for Java java.io ObjectOutput fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.io ObjectOutput.

The text is from its open source code.

Implementation

java.io.ObjectOutput has the following implementations.
Click this link to see all its implementation.

Method

voidclose()
Closes the stream.
voidflush()
Flushes the stream.
ClassgetClass()
Returns the runtime class of this Object .
voidwrite(int b)
Writes a byte.
voidwrite(byte b[])
Writes an array of bytes.
voidwrite(byte b[], int off, int len)
Writes a sub array of bytes.
voidwriteBoolean(boolean v)
Writes a boolean value to this output stream.
voidwriteByte(int v)
Writes to the output stream the eight low- order bits of the argument v.
voidwriteBytes(String s)
Writes a string to the output stream.
voidwriteChar(int v)
Writes a char value, which is comprised of two bytes, to the output stream.
voidwriteDouble(double v)
Writes a double value, which is comprised of eight bytes, to the output stream.
voidwriteFloat(float v)
Writes a float value, which is comprised of four bytes, to the output stream.
voidwriteInt(int v)
Writes an int value, which is comprised of four bytes, to the output stream.
voidwriteLong(long v)
Writes a long value, which is comprised of eight bytes, to the output stream.
voidwriteObject(Object obj)
Write an object to the underlying storage or stream.
voidwriteShort(int v)
Writes two bytes to the output stream to represent the value of the argument.
voidwriteUTF(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.