Example usage for Java java.lang Process fields, constructors, methods, implement or subclass
The text is from its open source code.
Process() Default constructor for Process. |
void | destroy() Kills the process. |
Process | destroyForcibly() Kills the process forcibly. |
int | exitValue() Returns the exit value for the process. |
Class> | getClass() Returns the runtime class of this Object . |
InputStream | getErrorStream() Returns the input stream connected to the error output of the process. |
InputStream | getInputStream() Returns the input stream connected to the normal output of the process. |
OutputStream | getOutputStream() Returns the output stream connected to the normal input of the process. |
int | hashCode() Returns a hash code value for the object. |
boolean | isAlive() Tests whether the process represented by this Process is alive. |
String | toString() Returns a string representation of the object. |
void | wait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed. |
void | wait() Causes the current thread to wait until it is awakened, typically by being notified or interrupted. |
int | waitFor() Causes the current thread to wait, if necessary, until the process represented by this Process object has terminated. |
boolean | waitFor(long timeout, TimeUnit unit) Causes the current thread to wait, if necessary, until the process represented by this Process object has terminated, or the specified waiting time elapses. |