public interface TextTransformer
ContentsTransformer, but operates on Readers and Writers instead of
InputStreams and OutputStreams.| Modifier and Type | Method and Description |
|---|---|
void |
transform(java.lang.String path,
java.io.Reader reader,
java.io.Writer writer)
Reads characters from
reader (typically until end-of-input) and writes characters to writer. |
void transform(java.lang.String path,
java.io.Reader reader,
java.io.Writer writer)
throws java.io.IOException
reader (typically until end-of-input) and writes characters to writer.
Closes neither the reader nor the writer.path - Designates the contents that is transformedjava.io.IOException