Class ObjectDecoderInputStream
- java.lang.Object
-
- java.io.InputStream
-
- io.netty.handler.codec.serialization.ObjectDecoderInputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.DataInput,java.io.ObjectInput,java.lang.AutoCloseable
@Deprecated public class ObjectDecoderInputStream extends java.io.InputStream implements java.io.ObjectInputDeprecated.This class has been deprecated with no replacement, because serialization can be a security liabilityAnObjectInputwhich is interoperable withObjectEncoderandObjectEncoderOutputStream.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 Summary
Constructors Constructor Description ObjectDecoderInputStream(java.io.InputStream in)Deprecated.Creates a newObjectInput.ObjectDecoderInputStream(java.io.InputStream in, int maxObjectSize)Deprecated.Creates a newObjectInput.ObjectDecoderInputStream(java.io.InputStream in, java.lang.ClassLoader classLoader)Deprecated.Creates a newObjectInput.ObjectDecoderInputStream(java.io.InputStream in, java.lang.ClassLoader classLoader, int maxObjectSize)Deprecated.Creates a newObjectInput.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intavailable()Deprecated.voidclose()Deprecated.voidmark(int readlimit)Deprecated.booleanmarkSupported()Deprecated.intread()Deprecated.intread(byte[] b)Deprecated.intread(byte[] b, int off, int len)Deprecated.booleanreadBoolean()Deprecated.bytereadByte()Deprecated.charreadChar()Deprecated.doublereadDouble()Deprecated.floatreadFloat()Deprecated.voidreadFully(byte[] b)Deprecated.voidreadFully(byte[] b, int off, int len)Deprecated.intreadInt()Deprecated.java.lang.StringreadLine()Deprecated.UseBufferedReader.readLine()instead.longreadLong()Deprecated.java.lang.ObjectreadObject()Deprecated.shortreadShort()Deprecated.intreadUnsignedByte()Deprecated.intreadUnsignedShort()Deprecated.java.lang.StringreadUTF()Deprecated.voidreset()Deprecated.longskip(long n)Deprecated.intskipBytes(int n)Deprecated.
-
-
-
Constructor Detail
-
ObjectDecoderInputStream
public ObjectDecoderInputStream(java.io.InputStream in)
Deprecated.Creates a newObjectInput.- Parameters:
in- theInputStreamwhere the serialized form will be read from
-
ObjectDecoderInputStream
public ObjectDecoderInputStream(java.io.InputStream in, java.lang.ClassLoader classLoader)Deprecated.Creates a newObjectInput.- Parameters:
in- theInputStreamwhere the serialized form will be read fromclassLoader- theClassLoaderwhich will load the class of the serialized object
-
ObjectDecoderInputStream
public ObjectDecoderInputStream(java.io.InputStream in, int maxObjectSize)Deprecated.Creates a newObjectInput.- Parameters:
in- theInputStreamwhere the serialized form will be read frommaxObjectSize- the maximum byte length of the serialized object. if the length of the received object is greater than this value, aStreamCorruptedExceptionwill be raised.
-
ObjectDecoderInputStream
public ObjectDecoderInputStream(java.io.InputStream in, java.lang.ClassLoader classLoader, int maxObjectSize)Deprecated.Creates a newObjectInput.- Parameters:
in- theInputStreamwhere the serialized form will be read fromclassLoader- theClassLoaderwhich will load the class of the serialized objectmaxObjectSize- the maximum byte length of the serialized object. if the length of the received object is greater than this value, aStreamCorruptedExceptionwill be raised.
-
-
Method Detail
-
readObject
public java.lang.Object readObject() throws java.lang.ClassNotFoundException, java.io.IOExceptionDeprecated.- Specified by:
readObjectin interfacejava.io.ObjectInput- Throws:
java.lang.ClassNotFoundExceptionjava.io.IOException
-
available
public int available() throws java.io.IOExceptionDeprecated.- Specified by:
availablein interfacejava.io.ObjectInput- Overrides:
availablein classjava.io.InputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOExceptionDeprecated.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Specified by:
closein interfacejava.io.ObjectInput- Overrides:
closein classjava.io.InputStream- Throws:
java.io.IOException
-
mark
public void mark(int readlimit)
Deprecated.- Overrides:
markin classjava.io.InputStream
-
markSupported
public boolean markSupported()
Deprecated.- Overrides:
markSupportedin classjava.io.InputStream
-
read
public int read() throws java.io.IOExceptionDeprecated.- Specified by:
readin interfacejava.io.ObjectInput- Specified by:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
read
public final int read(byte[] b, int off, int len) throws java.io.IOExceptionDeprecated.- Specified by:
readin interfacejava.io.ObjectInput- Overrides:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
read
public final int read(byte[] b) throws java.io.IOExceptionDeprecated.- Specified by:
readin interfacejava.io.ObjectInput- Overrides:
readin classjava.io.InputStream- Throws:
java.io.IOException
-
readBoolean
public final boolean readBoolean() throws java.io.IOExceptionDeprecated.- Specified by:
readBooleanin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readByte
public final byte readByte() throws java.io.IOExceptionDeprecated.- Specified by:
readBytein interfacejava.io.DataInput- Throws:
java.io.IOException
-
readChar
public final char readChar() throws java.io.IOExceptionDeprecated.- Specified by:
readCharin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readDouble
public final double readDouble() throws java.io.IOExceptionDeprecated.- Specified by:
readDoublein interfacejava.io.DataInput- Throws:
java.io.IOException
-
readFloat
public final float readFloat() throws java.io.IOExceptionDeprecated.- Specified by:
readFloatin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readFully
public final void readFully(byte[] b, int off, int len) throws java.io.IOExceptionDeprecated.- Specified by:
readFullyin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readFully
public final void readFully(byte[] b) throws java.io.IOExceptionDeprecated.- Specified by:
readFullyin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readInt
public final int readInt() throws java.io.IOExceptionDeprecated.- Specified by:
readIntin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readLine
@Deprecated public final java.lang.String readLine() throws java.io.IOExceptionDeprecated.UseBufferedReader.readLine()instead.- Specified by:
readLinein interfacejava.io.DataInput- Throws:
java.io.IOException
-
readLong
public final long readLong() throws java.io.IOExceptionDeprecated.- Specified by:
readLongin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readShort
public final short readShort() throws java.io.IOExceptionDeprecated.- Specified by:
readShortin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readUnsignedByte
public final int readUnsignedByte() throws java.io.IOExceptionDeprecated.- Specified by:
readUnsignedBytein interfacejava.io.DataInput- Throws:
java.io.IOException
-
readUnsignedShort
public final int readUnsignedShort() throws java.io.IOExceptionDeprecated.- Specified by:
readUnsignedShortin interfacejava.io.DataInput- Throws:
java.io.IOException
-
readUTF
public final java.lang.String readUTF() throws java.io.IOExceptionDeprecated.- Specified by:
readUTFin interfacejava.io.DataInput- Throws:
java.io.IOException
-
reset
public void reset() throws java.io.IOExceptionDeprecated.- Overrides:
resetin classjava.io.InputStream- Throws:
java.io.IOException
-
skip
public long skip(long n) throws java.io.IOExceptionDeprecated.- Specified by:
skipin interfacejava.io.ObjectInput- Overrides:
skipin classjava.io.InputStream- Throws:
java.io.IOException
-
skipBytes
public final int skipBytes(int n) throws java.io.IOExceptionDeprecated.- Specified by:
skipBytesin interfacejava.io.DataInput- Throws:
java.io.IOException
-
-