gnu.text

Class LineInputStreamReader

public class LineInputStreamReader extends LineBufferedReader

A LineBufferedReader that wraps an InputStream. Similar functionality as using an InputStreamReader, but provides hooks to read at the byte level before setting the charset. Optionally uses java.nio.charset directly, for extra flexibility and a possible (but slight and unverified) performance improvement.
Constructor Summary
LineInputStreamReader(InputStream in)
Method Summary
voidclose()
intfill(int len)
intgetByte()
voidmarkStart()
booleanready()
voidresetStart(int pos)
voidsetCharset(Charset cset)
voidsetCharset(String name)

Constructor Detail

LineInputStreamReader

public LineInputStreamReader(InputStream in)

Method Detail

close

public void close()

fill

public int fill(int len)

getByte

public int getByte()

markStart

public void markStart()

ready

public boolean ready()

resetStart

public void resetStart(int pos)

setCharset

public void setCharset(Charset cset)

setCharset

public void setCharset(String name)