org.eclipse.jgit.util.io
Class AutoCRLFInputStream
java.lang.Object
java.io.InputStream
org.eclipse.jgit.util.io.AutoCRLFInputStream
- All Implemented Interfaces:
- Closeable
public class AutoCRLFInputStream
- extends InputStream
An OutputStream that expands LF to CRLF.
Existing CRLF are not expanded to CRCRLF, but retained as is.
Optionally, a binary check on the first 8000 bytes is performed and in case
of binary files, canonicalization is turned off (for the complete file).
Method Summary |
void |
close()
|
int |
read()
|
int |
read(byte[] bs,
int off,
int len)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AutoCRLFInputStream
public AutoCRLFInputStream(InputStream in,
boolean detectBinary)
- Creates a new InputStream, wrapping the specified stream
- Parameters:
in
- raw input streamdetectBinary
- whether binaries should be detected- Since:
- 2.0
read
public int read()
throws IOException
- Specified by:
read
in class InputStream
- Throws:
IOException
read
public int read(byte[] bs,
int off,
int len)
throws IOException
- Overrides:
read
in class InputStream
- Throws:
IOException
close
public void close()
throws IOException
- Specified by:
close
in interface Closeable
- Overrides:
close
in class InputStream
- Throws:
IOException
Copyright © 2012. All Rights Reserved.