org.apache.commons.io.input
Class CharacterFilterReader
- java.lang.Object
-
- java.io.Reader
-
- java.io.FilterReader
-
- org.apache.commons.io.input.AbstractCharacterFilterReader
-
- org.apache.commons.io.input.CharacterFilterReader
-
- All Implemented Interfaces:
- Closeable, AutoCloseable, Readable
public class CharacterFilterReader extends AbstractCharacterFilterReader
A filter reader that filters out a given character represented as anint
code point, handy to remove known junk characters from CSV files for example. This class is the most efficient way to filter out a single character, as opposed to using aCharacterSetFilterReader
. You can also nestCharacterFilterReader
s.
-
Field Summary
Fields inherited from class org.apache.commons.io.input.AbstractCharacterFilterReader
SKIP_NONE
Fields inherited from class java.io.FilterReader
in
Constructor Summary
Constructors Constructor and Description CharacterFilterReader(Reader reader, int skip)
Constructs a new reader.CharacterFilterReader(Reader reader, IntPredicate skip)
Constructs a new reader.
Method Summary
Methods inherited from class org.apache.commons.io.input.AbstractCharacterFilterReader
filter, read, read
Methods inherited from class java.io.FilterReader
close, mark, markSupported, ready, reset, skip
-
Constructor Detail
CharacterFilterReader
public CharacterFilterReader(Reader reader, int skip)
Constructs a new reader.- Parameters:
-
reader
- the reader to filter. -
skip
- the character to filter out.
CharacterFilterReader
public CharacterFilterReader(Reader reader, IntPredicate skip)
Constructs a new reader.- Parameters:
-
reader
- the reader to filter. -
skip
- Skip test. - Since:
- 2.9.0
Copyright © 2002–2021 The Apache Software Foundation. All rights reserved.