Package org.apache.commons.io.input
Class WindowsLineEndingInputStream
java.lang.Object
java.io.InputStream
org.apache.commons.io.input.WindowsLineEndingInputStream
- All Implemented Interfaces:
Closeable,AutoCloseable
A filtering input stream that ensures the content will have Windows line endings, CRLF.
- Since:
- 2.5
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate booleanprivate booleanprivate booleanprivate final InputStreamprivate booleanprivate final boolean -
Constructor Summary
ConstructorsConstructorDescriptionWindowsLineEndingInputStream(InputStream in, boolean lineFeedAtEos) Constructs an input stream that filters another stream. -
Method Summary
Methods inherited from class java.io.InputStream
available, markSupported, read, read, reset, skip
-
Field Details
-
atEos
private boolean atEos -
atSlashCr
private boolean atSlashCr -
atSlashLf
private boolean atSlashLf -
in
-
injectSlashLf
private boolean injectSlashLf -
lineFeedAtEos
private final boolean lineFeedAtEos
-
-
Constructor Details
-
WindowsLineEndingInputStream
Constructs an input stream that filters another stream.- Parameters:
in- The input stream to wrap.lineFeedAtEos- true to ensure that the stream ends with CRLF.
-
-
Method Details
-
close
Closes the stream. Also closes the underlying stream.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classInputStream- Throws:
IOException- upon error
-
handleEos
private int handleEos()Handles the end of stream condition.- Returns:
- The next char to output to the stream.
-
mark
public void mark(int readLimit) - Overrides:
markin classInputStream
-
read
- Specified by:
readin classInputStream- Throws:
IOException
-