Native process created by exec.
Methods
Kills the subprocess. The subprocess represented by this
Process is forcibly terminated.
Returns the exit value of process.
| Returns |
Exit value of process, or null if the
process is not yet terminated. |
Gets the error stream of the subprocess.
Gets the input stream of the subprocess.
Gets the output stream of the subprocess.
causes the current thread to wait, if necessary, until the
process represented by this Process object hasterminated.
| Returns |
the exit value of the process.
By convention, 0 indicates normal termination. |
| Throws |
Interrupted -
if the current thread is interrupted
by another thread while it is waiting, then the wait is ended
and an Interrupted is thrown.
|