Methods Summary |
---|
public abstract void | destroy()Terminates this process and closes any associated streams.
|
public abstract int | exitValue()Returns the exit value of the native process represented by this object.
It is available only when the native process has terminated.
|
public abstract java.io.InputStream | getErrorStream()Returns an input stream that is connected to the error stream
(stderr) of the native process represented by this object.
|
public abstract java.io.InputStream | getInputStream()Returns an input stream that is connected to the standard output stream
(stdout) of the native process represented by this object.
|
public abstract java.io.OutputStream | getOutputStream()Returns an output stream that is connected to the standard input stream
(stdin) of the native process represented by this object.
|
public abstract int | waitFor()Causes the calling thread to wait for the native process associated with
this object to finish executing.
|