java.lang.Objectjava.lang.Process
Direct Known Subclasses:
ConcreteProcess, VMProcess, ConcreteProcess, ConcreteProcess, ProcessImpl
The methods that create processes may not work well for special processes on certain native platforms, such as native windowing processes, daemon processes, Win16/DOS processes on Microsoft Windows, or shell scripts.
By default, the created subprocess does not have its own terminal or console. All its standard I/O (i.e. stdin, stdout, stderr) operations will be redirected to the parent process, where they can be accessed via the streams obtained using the methods #getOutputStream() , #getInputStream() , and #getErrorStream() . The parent process uses these streams to feed input to and get output from the subprocess. Because some native platforms only provide limited buffer size for standard input and output streams, failure to promptly write the input stream or read the output stream of the subprocess may cause the subprocess to block, or even deadlock.
Where desired, subprocess I/O can also be redirected using methods of the ProcessBuilder class.
The subprocess is not killed when there are no more references to the {@code Process} object, but rather the subprocess continues executing asynchronously.
There is no requirement that a process represented by a {@code Process} object execute asynchronously or concurrently with respect to the Java process that owns the {@code Process} object.
As of 1.5, ProcessBuilder#start() is the preferred way to create a {@code Process}.
JDK1.0 - | Method from java.lang.Process Summary: |
|---|
| destroy, exitValue, getErrorStream, getInputStream, getOutputStream, waitFor |
| Methods from java.lang.Object: |
|---|
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from java.lang.Process Detail: |
|---|
|
|
If the standard error of the subprocess has been redirected using ProcessBuilder.redirectError or ProcessBuilder.redirectErrorStream then this method will return a null input stream. Implementation note: It is a good idea for the returned input stream to be buffered. |
If the standard output of the subprocess has been redirected using ProcessBuilder.redirectOutput then this method will return a null input stream. Otherwise, if the standard error of the subprocess has been redirected using ProcessBuilder.redirectErrorStream then the input stream returned by this method will receive the merged standard output and the standard error of the subprocess. Implementation note: It is a good idea for the returned input stream to be buffered. |
If the standard input of the subprocess has been redirected using ProcessBuilder.redirectInput then this method will return a null output stream. Implementation note: It is a good idea for the returned output stream to be buffered. |
|