public class ObjectEncoderOutputStream
extends java.io.OutputStream
implements java.io.ObjectOutput
构造器和说明 |
---|
ObjectEncoderOutputStream(java.io.OutputStream out)
Creates a new
ObjectOutput with the estimated length of 512
bytes. |
ObjectEncoderOutputStream(java.io.OutputStream out,
int estimatedLength)
Creates a new
ObjectOutput . |
限定符和类型 | 方法和说明 |
---|---|
void |
close() |
void |
flush() |
int |
size() |
void |
write(byte[] b) |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
void |
writeBoolean(boolean v) |
void |
writeByte(int v) |
void |
writeBytes(java.lang.String s) |
void |
writeChar(int v) |
void |
writeChars(java.lang.String s) |
void |
writeDouble(double v) |
void |
writeFloat(float v) |
void |
writeInt(int v) |
void |
writeLong(long v) |
void |
writeObject(java.lang.Object obj) |
void |
writeShort(int v) |
void |
writeUTF(java.lang.String str) |
public ObjectEncoderOutputStream(java.io.OutputStream out)
ObjectOutput
with the estimated length of 512
bytes.out
- the OutputStream
where the serialized form will be
written outpublic ObjectEncoderOutputStream(java.io.OutputStream out, int estimatedLength)
ObjectOutput
.out
- the OutputStream
where the serialized form will be
written outestimatedLength
- the estimated byte length of the serialized form of an object.
If the length of the serialized form exceeds this value, the
internal buffer will be expanded automatically at the cost of
memory bandwidth. If this value is too big, it will also waste
memory bandwidth. To avoid unnecessary memory copy or allocation
cost, please specify the properly estimated value.public void writeObject(java.lang.Object obj) throws java.io.IOException
writeObject
在接口中 java.io.ObjectOutput
java.io.IOException
public void write(int b) throws java.io.IOException
write
在接口中 java.io.DataOutput
write
在接口中 java.io.ObjectOutput
write
在类中 java.io.OutputStream
java.io.IOException
public void close() throws java.io.IOException
close
在接口中 java.io.Closeable
close
在接口中 java.io.ObjectOutput
close
在接口中 java.lang.AutoCloseable
close
在类中 java.io.OutputStream
java.io.IOException
public void flush() throws java.io.IOException
flush
在接口中 java.io.Flushable
flush
在接口中 java.io.ObjectOutput
flush
在类中 java.io.OutputStream
java.io.IOException
public final int size()
public void write(byte[] b, int off, int len) throws java.io.IOException
write
在接口中 java.io.DataOutput
write
在接口中 java.io.ObjectOutput
write
在类中 java.io.OutputStream
java.io.IOException
public void write(byte[] b) throws java.io.IOException
write
在接口中 java.io.DataOutput
write
在接口中 java.io.ObjectOutput
write
在类中 java.io.OutputStream
java.io.IOException
public final void writeBoolean(boolean v) throws java.io.IOException
writeBoolean
在接口中 java.io.DataOutput
java.io.IOException
public final void writeByte(int v) throws java.io.IOException
writeByte
在接口中 java.io.DataOutput
java.io.IOException
public final void writeBytes(java.lang.String s) throws java.io.IOException
writeBytes
在接口中 java.io.DataOutput
java.io.IOException
public final void writeChar(int v) throws java.io.IOException
writeChar
在接口中 java.io.DataOutput
java.io.IOException
public final void writeChars(java.lang.String s) throws java.io.IOException
writeChars
在接口中 java.io.DataOutput
java.io.IOException
public final void writeDouble(double v) throws java.io.IOException
writeDouble
在接口中 java.io.DataOutput
java.io.IOException
public final void writeFloat(float v) throws java.io.IOException
writeFloat
在接口中 java.io.DataOutput
java.io.IOException
public final void writeInt(int v) throws java.io.IOException
writeInt
在接口中 java.io.DataOutput
java.io.IOException
public final void writeLong(long v) throws java.io.IOException
writeLong
在接口中 java.io.DataOutput
java.io.IOException
public final void writeShort(int v) throws java.io.IOException
writeShort
在接口中 java.io.DataOutput
java.io.IOException
public final void writeUTF(java.lang.String str) throws java.io.IOException
writeUTF
在接口中 java.io.DataOutput
java.io.IOException