Package cx.ath.matthew.io
Class ExecOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- java.io.FilterOutputStream
-
- cx.ath.matthew.io.ExecOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class ExecOutputStream extends java.io.FilterOutputStreamClass to pipe an OutputStream through a command using stdin/stdout. E.g.Writer w = new OutputStreamWriter(new ExecOutputStream(new FileOutputStream("file"), "command"));
-
-
Constructor Summary
Constructors Constructor Description ExecOutputStream(java.io.OutputStream os, java.lang.Process p)Create a new ExecOutputStream on the given OutputStream using the process to filter the stream.ExecOutputStream(java.io.OutputStream os, java.lang.String cmd)Create a new ExecOutputStream on the given OutputStream using the process to filter the stream.ExecOutputStream(java.io.OutputStream os, java.lang.String[] cmd)Create a new ExecOutputStream on the given OutputStream using the process to filter the stream.ExecOutputStream(java.io.OutputStream os, java.lang.String[] cmd, java.lang.String[] env)Create a new ExecOutputStream on the given OutputStream using the process to filter the stream.ExecOutputStream(java.io.OutputStream os, java.lang.String cmd, java.lang.String[] env)Create a new ExecOutputStream on the given OutputStream using the process to filter the stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidfinalize()voidflush()voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(int b)
-
-
-
Constructor Detail
-
ExecOutputStream
public ExecOutputStream(java.io.OutputStream os, java.lang.Process p) throws java.io.IOExceptionCreate a new ExecOutputStream on the given OutputStream using the process to filter the stream.- Parameters:
os- Writes to this OutputStreamp- Filters data through stdin/out on this Process- Throws:
java.io.IOException
-
ExecOutputStream
public ExecOutputStream(java.io.OutputStream os, java.lang.String cmd) throws java.io.IOExceptionCreate a new ExecOutputStream on the given OutputStream using the process to filter the stream.- Parameters:
os- Writes to this OutputStreamcmd- Creates a Process from this string to filter data through stdin/out- Throws:
java.io.IOException
-
ExecOutputStream
public ExecOutputStream(java.io.OutputStream os, java.lang.String[] cmd) throws java.io.IOExceptionCreate a new ExecOutputStream on the given OutputStream using the process to filter the stream.- Parameters:
os- Writes to this OutputStreamcmd- Creates a Process from this string array (command, arg, ...) to filter data through stdin/out- Throws:
java.io.IOException
-
ExecOutputStream
public ExecOutputStream(java.io.OutputStream os, java.lang.String cmd, java.lang.String[] env) throws java.io.IOExceptionCreate a new ExecOutputStream on the given OutputStream using the process to filter the stream.- Parameters:
os- Writes to this OutputStreamcmd- Creates a Process from this string to filter data through stdin/outenv- Setup the environment for the command- Throws:
java.io.IOException
-
ExecOutputStream
public ExecOutputStream(java.io.OutputStream os, java.lang.String[] cmd, java.lang.String[] env) throws java.io.IOExceptionCreate a new ExecOutputStream on the given OutputStream using the process to filter the stream.- Parameters:
os- Writes to this OutputStreamcmd- Creates a Process from this string array (command, arg, ...) to filter data through stdin/outenv- Setup the environment for the command- Throws:
java.io.IOException
-
-
Method Detail
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.FilterOutputStream- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException- Specified by:
flushin interfacejava.io.Flushable- Overrides:
flushin classjava.io.FilterOutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b) throws java.io.IOException- Overrides:
writein classjava.io.FilterOutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException- Overrides:
writein classjava.io.FilterOutputStream- Throws:
java.io.IOException
-
write
public void write(int b) throws java.io.IOException- Overrides:
writein classjava.io.FilterOutputStream- Throws:
java.io.IOException
-
finalize
public void finalize()
- Overrides:
finalizein classjava.lang.Object
-
-