Package cx.ath.matthew.io
| Class Summary |
| DOMPrinter |
Print a DOM tree to the given OutputStream |
| ExecInputStream |
Class to pipe an InputStream through a command using stdin/stdout.
|
| ExecOutputStream |
Class to pipe an OutputStream through a command using stdin/stdout.
|
| InOutCopier |
Copies from an input stream to an output stream using a Thread.
example:
InputStream a = getInputStream();
OutputStream b = getOutputStream();
InOutCopier copier = new InOutCopier(a, b);
copier.start();
<do stuff that writes to the inputstream>
|
| TeeInputStream |
Class to copy a stream to a file or another stream as it is being sent through a stream pipe
E.g.
|
| TeeOutputStream |
Class to copy a stream to another stream or file as it is being sent through a stream pipe
E.g.
|