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
-
Constructor Summary
ConstructorDescriptionWindowsLineEndingInputStream
(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
-
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:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classInputStream
- Throws:
IOException
- upon error
-
mark
- Overrides:
mark
in classInputStream
-
read
- Specified by:
read
in classInputStream
- Throws:
IOException
-