Package org.apache.commons.io.input
Class UnixLineEndingInputStream
java.lang.Object
java.io.InputStream
org.apache.commons.io.input.UnixLineEndingInputStream
- All Implemented Interfaces:
- Closeable,- AutoCloseable
A filtering input stream that ensures the content will have UNIX-style line endings, LF.
- Since:
- 2.5
- 
Constructor SummaryConstructorsConstructorDescriptionUnixLineEndingInputStream(InputStream inputStream, boolean ensureLineFeedAtEndOfFile) Constructs an input stream that filters another stream
- 
Method SummaryMethods inherited from class java.io.InputStreamavailable, markSupported, read, read, reset, skip
- 
Constructor Details- 
UnixLineEndingInputStreamConstructs an input stream that filters another stream- Parameters:
- inputStream- The input stream to wrap
- ensureLineFeedAtEndOfFile- true to ensure that the file ends with LF
 
 
- 
- 
Method Details- 
closeCloses the stream. Also closes the underlying stream.- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Overrides:
- closein class- InputStream
- Throws:
- IOException- upon error
 
- 
mark- Overrides:
- markin class- InputStream
 
- 
read- Specified by:
- readin class- InputStream
- Throws:
- IOException
 
 
-