public class ObjectOutputStream extends OutputStream implements ObjectOutput
| Modifier | Constructor and Description |
|---|---|
protected |
ObjectOutputStream() |
|
ObjectOutputStream(OutputStream out) |
| Modifier and Type | Method and Description |
|---|---|
void |
defaultWriteObject() |
void |
write(int arg0) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(String s) |
void |
writeChar(int v) |
void |
writeChars(String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeObject(Object obj) |
void |
writeShort(int v) |
void |
writeUTF(String str) |
close, flush, write, writeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclose, flush, write, writeprotected ObjectOutputStream()
throws IOException,
SecurityException
IOExceptionSecurityExceptionpublic ObjectOutputStream(OutputStream out) throws IOException
IOExceptionpublic void defaultWriteObject()
throws IOException
IOExceptionpublic void write(int arg0)
throws IOException
write in interface DataOutputwrite in interface ObjectOutputwrite in class OutputStreamIOExceptionpublic void writeObject(Object obj) throws IOException
writeObject in interface ObjectOutputIOExceptionpublic void writeBoolean(boolean v)
throws IOException
writeBoolean in interface DataOutputIOExceptionpublic void writeByte(int v)
throws IOException
writeByte in interface DataOutputIOExceptionpublic void writeBytes(String s) throws IOException
writeBytes in interface DataOutputIOExceptionpublic void writeChar(int v)
throws IOException
writeChar in interface DataOutputIOExceptionpublic void writeChars(String s) throws IOException
writeChars in interface DataOutputIOExceptionpublic void writeInt(int v)
throws IOException
writeInt in interface DataOutputIOExceptionpublic void writeLong(long v)
throws IOException
writeLong in interface DataOutputIOExceptionpublic void writeShort(int v)
throws IOException
writeShort in interface DataOutputIOExceptionpublic void writeUTF(String str) throws IOException
writeUTF in interface DataOutputIOExceptionpublic void writeFloat(float v)
throws IOException
writeFloat in interface DataOutputIOExceptionpublic void writeDouble(double v)
throws IOException
writeDouble in interface DataOutputIOExceptionCopyright © 2005–2024 Javolution. All rights reserved.