public class PlainTextByLineStream extends Object implements ObjectStream<String>
String
object.Constructor and Description |
---|
PlainTextByLineStream(FileChannel channel,
Charset encoding) |
PlainTextByLineStream(FileChannel channel,
String charsetName) |
PlainTextByLineStream(InputStream in,
Charset charset) |
PlainTextByLineStream(InputStream in,
String charsetName) |
PlainTextByLineStream(Reader in)
Initializes the current instance.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the
ObjectStream and releases all allocated
resources. |
String |
read()
Returns the next object.
|
void |
reset()
Repositions the stream at the beginning and the previously seen object sequence
will be repeated exactly.
|
public PlainTextByLineStream(Reader in)
in
- public PlainTextByLineStream(InputStream in, String charsetName) throws UnsupportedEncodingException
UnsupportedEncodingException
public PlainTextByLineStream(InputStream in, Charset charset)
public PlainTextByLineStream(FileChannel channel, String charsetName)
public PlainTextByLineStream(FileChannel channel, Charset encoding)
public String read() throws IOException
ObjectStream
read
in interface ObjectStream<String>
IOException
public void reset() throws IOException
ObjectStream
reset
in interface ObjectStream<String>
IOException
public void close() throws IOException
ObjectStream
ObjectStream
and releases all allocated
resources. After close was called its not allowed to call
read or reset.close
in interface ObjectStream<String>
IOException
Copyright © 2018 The Apache Software Foundation. All rights reserved.