Most visited

Recently visited

Added in API level 1

Process

public abstract class Process
extends Object

java.lang.Object
   ↳ java.lang.Process


The start() and Runtime.exec methods create a native process and return an instance of a subclass of Process that can be used to control the process and obtain information about it. The class Process provides methods for performing input from the process, performing output to the process, waiting for the process to complete, checking the exit status of the process, and destroying (killing) the process.

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.

The subprocess is not killed when there are no more references to the Process object, but rather the subprocess continues executing asynchronously.

There is no requirement that a process represented by a Process object execute asynchronously or concurrently with respect to the Java process that owns the Process object.

As of 1.5, start() is the preferred way to create a Process.

Summary

Public constructors

Process()

Public methods

abstract void destroy()

Kills the subprocess.

abstract int exitValue()

Returns the exit value for the subprocess.

abstract InputStream getErrorStream()

Returns the input stream connected to the error output of the subprocess.

abstract InputStream getInputStream()

Returns the input stream connected to the normal output of the subprocess.

abstract OutputStream getOutputStream()

Returns the output stream connected to the normal input of the subprocess.

abstract int waitFor()

Causes the current thread to wait, if necessary, until the process represented by this Process object has terminated.

Inherited methods

From class java.lang.Object

Public constructors

Process

Added in API level 1
Process ()

Public methods

destroy

Added in API level 1
void destroy ()

Kills the subprocess. The subprocess represented by this Process object is forcibly terminated.

exitValue

Added in API level 1
int exitValue ()

Returns the exit value for the subprocess.

Returns
int the exit value of the subprocess represented by this Process object. By convention, the value 0 indicates normal termination.
Throws
IllegalThreadStateException if the subprocess represented by this Process object has not yet terminated

getErrorStream

Added in API level 1
InputStream getErrorStream ()

Returns the input stream connected to the error output of the subprocess. The stream obtains data piped from the error output of the process represented by this Process object.

Implementation note: It is a good idea for the returned input stream to be buffered.

Returns
InputStream the input stream connected to the error output of the subprocess

getInputStream

Added in API level 1
InputStream getInputStream ()

Returns the input stream connected to the normal output of the subprocess. The stream obtains data piped from the standard output of the process represented by this Process object.

Implementation note: It is a good idea for the returned input stream to be buffered.

Returns
InputStream the input stream connected to the normal output of the subprocess

getOutputStream

Added in API level 1
OutputStream getOutputStream ()

Returns the output stream connected to the normal input of the subprocess. Output to the stream is piped into the standard input of the process represented by this Process object.

Implementation note: It is a good idea for the returned output stream to be buffered.

Returns
OutputStream the output stream connected to the normal input of the subprocess

waitFor

Added in API level 1
int waitFor ()

Causes the current thread to wait, if necessary, until the process represented by this Process object has terminated. This method returns immediately if the subprocess has already terminated. If the subprocess has not yet terminated, the calling thread will be blocked until the subprocess exits.

Returns
int the exit value of the subprocess represented by this Process object. By convention, the value 0 indicates normal termination.
Throws
InterruptedException if the current thread is interrupted by another thread while it is waiting, then the wait is ended and an InterruptedException is thrown.

Hooray!