- java.lang.Object
-
- java.io.OutputStream
-
- org.eclipse.jgit.util.io.AutoLFOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class AutoLFOutputStream extends OutputStream
An OutputStream that reduces CRLF to LF.Existing single CR are not changed to LF, but retained as is.
A binary check on the first
RawText.getBufferSize()bytes is performed and in case of binary files, canonicalization is turned off (for the complete file). If the binary check determines that the input is not binary but text with CR/LF, canonicalization is also turned off.- Since:
- 4.3
-
-
Constructor Summary
Constructors Constructor Description AutoLFOutputStream(OutputStream out)Constructor for AutoLFOutputStream.AutoLFOutputStream(OutputStream out, boolean detectBinary)Constructor for AutoLFOutputStream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()voidwrite(byte[] b)voidwrite(byte[] b, int startOff, int startLen)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Constructor Detail
-
AutoLFOutputStream
public AutoLFOutputStream(OutputStream out)
Constructor for AutoLFOutputStream.- Parameters:
out- anOutputStreamobject.
-
AutoLFOutputStream
public AutoLFOutputStream(OutputStream out, boolean detectBinary)
Constructor for AutoLFOutputStream.- Parameters:
out- anOutputStreamobject.detectBinary- whether binaries should be detected
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int startOff, int startLen) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
-