@Deprecated public class ObjectEncoderOutputStream extends OutputStream implements ObjectOutput
ObjectOutput
which is interoperable with ObjectDecoder
and ObjectDecoderInputStream
.
Security: serialization can be a security liability, and should not be used without defining a list of classes that are allowed to be desirialized. Such a list can be specified with the jdk.serialFilter system property, for instance. See the serialization filtering article for more information.
Constructor and Description |
---|
ObjectEncoderOutputStream(OutputStream out)
Deprecated.
Creates a new
ObjectOutput with the estimated length of 512
bytes. |
ObjectEncoderOutputStream(OutputStream out,
int estimatedLength)
Deprecated.
Creates a new
ObjectOutput . |
Modifier and Type | Method and Description |
---|---|
void |
close()
Deprecated.
|
void |
flush()
Deprecated.
|
int |
size()
Deprecated.
|
void |
write(byte[] b)
Deprecated.
|
void |
write(byte[] b,
int off,
int len)
Deprecated.
|
void |
write(int b)
Deprecated.
|
void |
writeBoolean(boolean v)
Deprecated.
|
void |
writeByte(int v)
Deprecated.
|
void |
writeBytes(String s)
Deprecated.
|
void |
writeChar(int v)
Deprecated.
|
void |
writeChars(String s)
Deprecated.
|
void |
writeDouble(double v)
Deprecated.
|
void |
writeFloat(float v)
Deprecated.
|
void |
writeInt(int v)
Deprecated.
|
void |
writeLong(long v)
Deprecated.
|
void |
writeObject(Object obj)
Deprecated.
|
void |
writeShort(int v)
Deprecated.
|
void |
writeUTF(String str)
Deprecated.
|
public ObjectEncoderOutputStream(OutputStream out)
ObjectOutput
with the estimated length of 512
bytes.out
- the OutputStream
where the serialized form will be
written outpublic ObjectEncoderOutputStream(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(Object obj) throws IOException
writeObject
in interface ObjectOutput
IOException
public void write(int b) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class OutputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface ObjectOutput
close
in interface AutoCloseable
close
in class OutputStream
IOException
public void flush() throws IOException
flush
in interface Flushable
flush
in interface ObjectOutput
flush
in class OutputStream
IOException
public final int size()
public void write(byte[] b, int off, int len) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class OutputStream
IOException
public void write(byte[] b) throws IOException
write
in interface DataOutput
write
in interface ObjectOutput
write
in class OutputStream
IOException
public final void writeBoolean(boolean v) throws IOException
writeBoolean
in interface DataOutput
IOException
public final void writeByte(int v) throws IOException
writeByte
in interface DataOutput
IOException
public final void writeBytes(String s) throws IOException
writeBytes
in interface DataOutput
IOException
public final void writeChar(int v) throws IOException
writeChar
in interface DataOutput
IOException
public final void writeChars(String s) throws IOException
writeChars
in interface DataOutput
IOException
public final void writeDouble(double v) throws IOException
writeDouble
in interface DataOutput
IOException
public final void writeFloat(float v) throws IOException
writeFloat
in interface DataOutput
IOException
public final void writeInt(int v) throws IOException
writeInt
in interface DataOutput
IOException
public final void writeLong(long v) throws IOException
writeLong
in interface DataOutput
IOException
public final void writeShort(int v) throws IOException
writeShort
in interface DataOutput
IOException
public final void writeUTF(String str) throws IOException
writeUTF
in interface DataOutput
IOException
Copyright © 2008–2024 The Netty Project. All rights reserved.