|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.InputStream
java.io.FilterInputStream
cx.ath.matthew.io.ExecInputStream
public class ExecInputStream
Class to pipe an InputStream through a command using stdin/stdout. E.g.
Reader r = new InputStreamReader(new ExecInputStream(new FileInputStream("file"), "command"));
| Field Summary |
|---|
| Fields inherited from class java.io.FilterInputStream |
|---|
in |
| Constructor Summary | |
|---|---|
ExecInputStream(InputStream is,
Process p)
Create a new ExecInputStream on the given InputStream using the process to filter the stream. |
|
ExecInputStream(InputStream is,
String cmd)
Create a new ExecInputStream on the given InputStream using the process to filter the stream. |
|
ExecInputStream(InputStream is,
String[] cmd)
Create a new ExecInputStream on the given InputStream using the process to filter the stream. |
|
ExecInputStream(InputStream is,
String[] cmd,
String[] env)
Create a new ExecInputStream on the given InputStream using the process to filter the stream. |
|
ExecInputStream(InputStream is,
String cmd,
String[] env)
Create a new ExecInputStream on the given InputStream using the process to filter the stream. |
|
| Method Summary | |
|---|---|
int |
available()
|
void |
close()
|
void |
finalize()
|
void |
flush()
|
void |
mark(int readlimit)
|
boolean |
markSupported()
|
int |
read()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
void |
reset()
|
long |
skip(long n)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ExecInputStream(InputStream is,
Process p)
throws IOException
is - Reads from this InputStreamp - Filters data through stdin/out on this Process
IOException
public ExecInputStream(InputStream is,
String cmd)
throws IOException
is - Reads from this InputStreamcmd - Creates a Process from this string to filter data through stdin/out
IOException
public ExecInputStream(InputStream is,
String[] cmd)
throws IOException
is - Reads from this InputStreamcmd - Creates a Process from this string array (command, arg, ...) to filter data through stdin/out
IOException
public ExecInputStream(InputStream is,
String cmd,
String[] env)
throws IOException
is - Reads from this InputStreamcmd - Creates a Process from this string to filter data through stdin/outenv - Setup the environment for the command
IOException
public ExecInputStream(InputStream is,
String[] cmd,
String[] env)
throws IOException
is - Reads from this InputStreamcmd - Creates a Process from this string array (command, arg, ...) to filter data through stdin/outenv - Setup the environment for the command
IOException| Method Detail |
|---|
public void close()
throws IOException
close in interface Closeableclose in class FilterInputStreamIOException
public void flush()
throws IOException
IOException
public int available()
throws IOException
available in class FilterInputStreamIOException
public int read()
throws IOException
read in class FilterInputStreamIOException
public int read(byte[] b)
throws IOException
read in class FilterInputStreamIOException
public int read(byte[] b,
int off,
int len)
throws IOException
read in class FilterInputStreamIOException
public long skip(long n)
throws IOException
skip in class FilterInputStreamIOExceptionpublic void mark(int readlimit)
mark in class FilterInputStreampublic boolean markSupported()
markSupported in class FilterInputStreampublic void reset()
reset in class FilterInputStreampublic void finalize()
finalize in class Object
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||