org.apache.poi.util
Class ReplacingInputStream
java.lang.Object
java.io.InputStream
java.io.FilterInputStream
org.apache.poi.util.ReplacingInputStream
- All Implemented Interfaces:
- java.io.Closeable
@Internal
public class ReplacingInputStream
- extends java.io.FilterInputStream
Simple FilterInputStream that can replace occurrences of bytes with something else.
This has been taken from inbot-utils. (MIT licensed)
- See Also:
- inbot-utils
Fields inherited from class java.io.FilterInputStream |
in |
Constructor Summary |
ReplacingInputStream(java.io.InputStream in,
byte[] pattern,
byte[] replacement)
Replace occurrences of pattern in the input. |
ReplacingInputStream(java.io.InputStream in,
java.lang.String pattern,
java.lang.String replacement)
Replace occurrences of pattern in the input. |
Method Summary |
int |
read()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
java.lang.String |
toString()
|
Methods inherited from class java.io.FilterInputStream |
available, close, mark, markSupported, reset, skip |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ReplacingInputStream
public ReplacingInputStream(java.io.InputStream in,
java.lang.String pattern,
java.lang.String replacement)
- Replace occurrences of pattern in the input. Note: input is assumed to be UTF-8 encoded. If not the case use byte[] based pattern and replacement.
- Parameters:
in
- inputpattern
- pattern to replace.replacement
- the replacement or null
ReplacingInputStream
public ReplacingInputStream(java.io.InputStream in,
byte[] pattern,
byte[] replacement)
- Replace occurrences of pattern in the input.
If you want to normalize line endings DOS/MAC (\n\r | \r) to UNIX (\n), you can call the following:
new ReplacingInputStream(new ReplacingInputStream(is, "\n\r", "\n"), "\r", "\n")
- Parameters:
in
- inputpattern
- pattern to replacereplacement
- the replacement or null
read
public int read(byte[] b,
int off,
int len)
throws java.io.IOException
- Overrides:
read
in class java.io.FilterInputStream
- Throws:
java.io.IOException
read
public int read(byte[] b)
throws java.io.IOException
- Overrides:
read
in class java.io.FilterInputStream
- Throws:
java.io.IOException
read
public int read()
throws java.io.IOException
- Overrides:
read
in class java.io.FilterInputStream
- Throws:
java.io.IOException
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object