public final class LineInputStream extends FilterInputStream
DataInputStream.readLine()
. Expected use is to read
lines as String objects from a RFC822 stream.
It is implemented as a FilterInputStream, so one can just wrap
this class around any input stream and read bytes from this filter.in
Constructor and Description |
---|
LineInputStream(InputStream in) |
Modifier and Type | Method and Description |
---|---|
String |
readLine()
Read a line containing only ASCII characters from the input
stream.
|
available, close, mark, markSupported, read, read, read, reset, skip
public LineInputStream(InputStream in)
public String readLine() throws IOException
This class is similar to the deprecated
DataInputStream.readLine()
IOException
- if an I/O error occurs.Copyright © 2021 JBoss by Red Hat. All rights reserved.