The abstract Process class a process- that is, an executing program. Methods provided by the Process is used to perform input, output, waiting for the process o complete, checking exit status of the process and destroying process.
- It extends class Object.
- It is used primarily as a superclass for the type of object created by exec() in the Runtime class.
- ProcessBuilder.start() and Runtime.getRuntime.exec() methods creates 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.
- ProcessBuilder.start() is the most preferred way to create process.
ProcessBuilder.start() vs Runtime.getRuntime.exec(): ProcessBuilder allows us to redirect the standard error of the child process into its standard output. Now we don’t need two separate threads one reading from stdout and one reading from stderr.
Constructor
Methods:
-
void destroy(): Kills the subprocess.
Syntax: public abstract void destroy(). Returns: NA. Exception: NA.
// Java code illustrating destroy()// method for windows operating systempublicclassProcessDemopublicstaticvoidmain(String[] args){try{// create a new processSystem.out.println("Creating Process");ProcessBuilder builder =newProcessBuilder("notepad.exe");Process pro = builder.start();// wait 10 secondsSystem.out.println("Waiting");Thread.sleep(10000);// kill the processpro.destroy();System.out.println("Process destroyed");}catch(Exception ex){ex.printStackTrace();}}}chevron_rightfilter_noneOutput:
Creating Process Waiting Process destroyed
// Java code illustrating destroy()// method for Mac Operating Systemimportjava.lang.*;importjava.io.*;classProcessDemo{publicstaticvoidmain(String arg[])throwsIOException, Exception{System.out.println("Creating process");//creating processProcessBuilder p =newProcessBuilder(newString[]{"open","/Applications/Facetime.app"});Process pro = p.start();//waiting for 10 secondThread.sleep(10000);System.out.println("destroying process");//destroying processpro.destroy();}}chevron_rightfilter_noneOutput:
Creating process destroying process
-
int exitValue(): This method returns the exit value for the subprocess.
Syntax: public abstract int exitValue(). Returns: This method returns the exit value of the subprocess represented by this Process object. By convention, the value 0 indicates normal termination. Exception: IllegalThreadStateException , if the subprocess represented by this Process object has not yet terminated.
// Java code illustrating exitValue() methodpublicclassProcessDemo{publicstaticvoidmain(String[] args){try{// create a new processSystem.out.println("Creating Process");ProcessBuilder builder =newProcessBuilder("notepad.exe");Process pro = builder.start();// kill the processpro.destroy();// checking the exit value of subprocessSystem.out.println("exit value: "+ pro.exitValue());}catch(Exception ex){ex.printStackTrace();}}}chevron_rightfilter_noneOutput:
Creating Process 1
-
abstract InputStream getErrorStream(): This method gets the input stream of the subprocess.
Syntax: public abstract InputStream getInputStream(). Returns: input stream that reads input from the process out output stream. Exception: NA.
// Java code illustrating// getInputStream() methodimportjava.lang.*;importjava.io.*;classProcessDemo{publicstaticvoidmain(String arg[])throwsIOException, Exception{// creating the processRuntime r = Runtime.getRuntime();// shell script for loop from 1 to 3String[] nargs = {"sh","-c", "fori in123;doecho $i; done"};Process p = r.exec(nargs);BufferedReader is =newBufferedReader(newInputStreamReader(p.getInputStream()));String line;// reading the outputwhile((line = is.readLine()) !=null)System.out.println(line);}}chevron_rightfilter_noneOutput:
1 2 3
-
abstract OutputStream getOutputStream(): This method gets the output stream of the subprocess. Output to the stream is piped into the standard input stream of the process represented by this Process object.
Syntax: public abstract OutputStream getOutputStream() Returns: the output stream connected to the normal input of the subprocess. Exception: NA.
// Java code illustrating// getOutputStream() methodimportjava.io.BufferedOutputStream;importjava.io.OutputStream;publicclassProcessDemo{publicstaticvoidmain(String[] args){try{// create a new processSystem.out.println("Creating Process");Process p = Runtime.getRuntime().exec("notepad.exe");// get the output streamOutputStream out = p.getOutputStream();// close the output streamSystem.out.println("Closing the output stream");out.close();}catch(Exception ex){ex.printStackTrace();}}}chevron_rightfilter_noneOutput:
Creating Process... Closing the output stream...
-
abstract InputStream getErrorStream(): It returns an input stream that reads input from the process err output stream.
Syntax: public abstract InputStream getErrorStream(). Returns: the input stream connected to the error stream of the subprocess. Exception: NA.
// Java code illustrating// getErrorStream() methodimportjava.io.InputStream;publicclassProcessDemo{publicstaticvoidmain(String[] args){try{// create a new processSystem.out.println("Creating Process");Process p = Runtime.getRuntime().exec("notepad.exe");// get the error stream of the process and print itInputStream error = p.getErrorStream();for(inti =0; i < error.available(); i++){System.out.println(""+ error.read());}// wait for 10 seconds and then destroy the processThread.sleep(10000);p.destroy();}catch(Exception ex){ex.printStackTrace();}}}chevron_rightfilter_noneOutput:
Creating Process
-
int waitFor(): Returns the exit code returned by the process. This method does not return until the process on which it is called terminates.
Syntax: public int waitFor(). Returns: the exit value of the process. By convention, 0 indicates normal termination. Exception: throws InterruptedException.
// Java code illustrating// waitFor() methodpublicclassProcessDemo{publicstaticvoidmain(String[] args){try{// create a new processSystem.out.println("Creating Process");Process p = Runtime.getRuntime().exec("notepad.exe");// cause this process to stop// until process p is terminatedp.waitFor();// when you manually close notepad.exe// program will continue hereSystem.out.println("Waiting over");}catch(Exception ex){ex.printStackTrace();}}}chevron_rightfilter_noneOutput:
Creating Process... Waiting over.
This article is contributed by Abhishek Verma. If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.

