public class ObjectDecoderInputStream extends InputStream implements ObjectInput
Constructor and Description |
---|
ObjectDecoderInputStream(InputStream in)
Creates a new
ObjectInput . |
ObjectDecoderInputStream(InputStream in,
ClassLoader classLoader)
Creates a new
ObjectInput . |
ObjectDecoderInputStream(InputStream in,
ClassLoader classLoader,
int maxObjectSize)
Creates a new
ObjectInput . |
ObjectDecoderInputStream(InputStream in,
int maxObjectSize)
Creates a new
ObjectInput . |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
String |
readLine()
Deprecated.
Use
BufferedReader.readLine() instead. |
long |
readLong() |
Object |
readObject() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
void |
reset() |
long |
skip(long n) |
int |
skipBytes(int n) |
public ObjectDecoderInputStream(InputStream in)
ObjectInput
.in
- the InputStream
where the serialized form will be
read frompublic ObjectDecoderInputStream(InputStream in, ClassLoader classLoader)
ObjectInput
.in
- the InputStream
where the serialized form will be
read fromclassLoader
- the ClassLoader
which will load the class of the
serialized objectpublic ObjectDecoderInputStream(InputStream in, int maxObjectSize)
ObjectInput
.in
- the InputStream
where 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,
a StreamCorruptedException
will be raised.public ObjectDecoderInputStream(InputStream in, ClassLoader classLoader, int maxObjectSize)
ObjectInput
.in
- the InputStream
where the serialized form will be
read fromclassLoader
- the ClassLoader
which 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,
a StreamCorruptedException
will be raised.public Object readObject() throws ClassNotFoundException, IOException
readObject
in interface ObjectInput
ClassNotFoundException
IOException
public int available() throws IOException
available
in interface ObjectInput
available
in class InputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface ObjectInput
close
in interface AutoCloseable
close
in class InputStream
IOException
public void mark(int readlimit)
mark
in class InputStream
public boolean markSupported()
markSupported
in class InputStream
public int read() throws IOException
read
in interface ObjectInput
read
in class InputStream
IOException
public final int read(byte[] b, int off, int len) throws IOException
read
in interface ObjectInput
read
in class InputStream
IOException
public final int read(byte[] b) throws IOException
read
in interface ObjectInput
read
in class InputStream
IOException
public final boolean readBoolean() throws IOException
readBoolean
in interface DataInput
IOException
public final byte readByte() throws IOException
readByte
in interface DataInput
IOException
public final char readChar() throws IOException
readChar
in interface DataInput
IOException
public final double readDouble() throws IOException
readDouble
in interface DataInput
IOException
public final float readFloat() throws IOException
readFloat
in interface DataInput
IOException
public final void readFully(byte[] b, int off, int len) throws IOException
readFully
in interface DataInput
IOException
public final void readFully(byte[] b) throws IOException
readFully
in interface DataInput
IOException
public final int readInt() throws IOException
readInt
in interface DataInput
IOException
@Deprecated public final String readLine() throws IOException
BufferedReader.readLine()
instead.readLine
in interface DataInput
IOException
public final long readLong() throws IOException
readLong
in interface DataInput
IOException
public final short readShort() throws IOException
readShort
in interface DataInput
IOException
public final int readUnsignedByte() throws IOException
readUnsignedByte
in interface DataInput
IOException
public final int readUnsignedShort() throws IOException
readUnsignedShort
in interface DataInput
IOException
public final String readUTF() throws IOException
readUTF
in interface DataInput
IOException
public void reset() throws IOException
reset
in class InputStream
IOException
public long skip(long n) throws IOException
skip
in interface ObjectInput
skip
in class InputStream
IOException
public final int skipBytes(int n) throws IOException
skipBytes
in interface DataInput
IOException
Copyright © 2008–2017 The Netty Project. All rights reserved.