org.apache.james.mime4j.io
public class BufferedLineReaderInputStream extends LineReaderInputStream
InputStream
.in
Constructor and Description |
---|
BufferedLineReaderInputStream(InputStream instream,
int buffersize) |
BufferedLineReaderInputStream(InputStream instream,
int buffersize,
int maxLineLen) |
Modifier and Type | Method and Description |
---|---|
byte[] |
buf() |
int |
capacity() |
byte |
charAt(int pos) |
void |
clear() |
void |
ensureCapacity(int len) |
int |
fillBuffer() |
boolean |
hasBufferedData() |
int |
indexOf(byte b) |
int |
indexOf(byte[] pattern)
Implements quick search algorithm as published by
|
int |
indexOf(byte[] pattern,
int off,
int len)
Implements quick search algorithm as published by
|
int |
indexOf(byte b,
int off,
int len) |
int |
length() |
int |
limit() |
boolean |
markSupported() |
int |
pos() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
int |
readLine(ByteArrayBuffer dst)
Reads one line of text into the given
ByteArrayBuffer . |
int |
skip(int n) |
String |
toString() |
void |
truncate() |
public BufferedLineReaderInputStream(InputStream instream, int buffersize, int maxLineLen)
public BufferedLineReaderInputStream(InputStream instream, int buffersize)
public void ensureCapacity(int len)
public int fillBuffer() throws IOException
IOException
public boolean hasBufferedData()
public void truncate()
public int read() throws IOException
read
in class FilterInputStream
IOException
public int read(byte[] b, int off, int len) throws IOException
read
in class FilterInputStream
IOException
public int read(byte[] b) throws IOException
read
in class FilterInputStream
IOException
public boolean markSupported()
markSupported
in class FilterInputStream
public int readLine(ByteArrayBuffer dst) throws IOException
LineReaderInputStream
ByteArrayBuffer
.readLine
in class LineReaderInputStream
dst
- Destination-1
if the end of
the stream has been reached.IOException
- in case of an I/O error.public int indexOf(byte[] pattern, int off, int len)
SUNDAY D.M., 1990, A very fast substring search algorithm, Communications of the ACM . 33(8):132-142.
public int indexOf(byte[] pattern)
SUNDAY D.M., 1990, A very fast substring search algorithm, Communications of the ACM . 33(8):132-142.
public int indexOf(byte b, int off, int len)
public int indexOf(byte b)
public byte charAt(int pos)
public byte[] buf()
public int pos()
public int limit()
public int length()
public int capacity()
public int skip(int n)
public void clear()
Copyright © 2004–2014 The Apache Software Foundation. All rights reserved.