public class ByteBufHttpInputStream extends HttpInputStream
| 构造器和说明 |
|---|
ByteBufHttpInputStream(io.netty.buffer.ByteBuf byteBuf,
boolean releaseOnClose) |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
available() |
void |
close() |
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
byte |
readByte() |
int |
readBytes()
Returns the number of read bytes by this stream so far.
|
char |
readChar() |
double |
readDouble() |
float |
readFloat() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
String |
readLine() |
long |
readLong() |
short |
readShort() |
String |
readString(Charset charset)
Decodes this readable bytes into a string with the specified character set name.
|
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
void |
reset() |
long |
skip(long n) |
int |
skipBytes(int n) |
readpublic ByteBufHttpInputStream(io.netty.buffer.ByteBuf byteBuf,
boolean releaseOnClose)
public void close()
throws IOException
close 在接口中 Closeableclose 在接口中 AutoCloseableclose 在类中 InputStreamIOExceptionpublic int available()
throws IOException
available 在类中 InputStreamIOExceptionpublic void mark(int readlimit)
mark 在类中 InputStreampublic boolean markSupported()
markSupported 在类中 InputStreampublic int read(byte[] b,
int off,
int len)
throws IOException
read 在类中 InputStreamIOExceptionpublic void reset()
throws IOException
reset 在类中 InputStreamIOExceptionpublic long skip(long n)
throws IOException
skip 在类中 InputStreamIOExceptionpublic void readFully(byte[] b)
throws IOException
IOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws IOException
IOExceptionpublic int skipBytes(int n)
throws IOException
IOExceptionpublic boolean readBoolean()
throws IOException
IOExceptionpublic byte readByte()
throws IOException
IOExceptionpublic int readUnsignedByte()
throws IOException
IOExceptionpublic short readShort()
throws IOException
IOExceptionpublic int readUnsignedShort()
throws IOException
IOExceptionpublic char readChar()
throws IOException
IOExceptionpublic int readInt()
throws IOException
IOExceptionpublic long readLong()
throws IOException
IOExceptionpublic float readFloat()
throws IOException
IOExceptionpublic double readDouble()
throws IOException
IOExceptionpublic String readLine() throws IOException
IOExceptionpublic String readUTF() throws IOException
IOExceptionpublic int read()
throws IOException
read 在类中 InputStreamIOExceptionpublic int readBytes()
HttpInputStreamreadBytes 在类中 HttpInputStreampublic String readString(Charset charset)
HttpInputStreamreadString 在类中 HttpInputStreamCopyright © 2020. All rights reserved.