
- Java.lang Package classes
- Java.lang - Home
- Java.lang - Boolean
- Java.lang - Byte
- Java.lang - Character
- Java.lang - Character.Subset
- Java.lang - Character.UnicodeBlock
- Java.lang - Class
- Java.lang - ClassLoader
- Java.lang - Compiler
- Java.lang - Double
- Java.lang - Enum
- Java.lang - Float
- Java.lang - InheritableThreadLocal
- Java.lang - Integer
- Java.lang - Long
- Java.lang - Math
- Java.lang - Number
- Java.lang - Object
- Java.lang - Package
- Java.lang - Process
- Java.lang - ProcessBuilder
- Java.lang - Runtime
- Java.lang - RuntimePermission
- Java.lang - SecurityManager
- Java.lang - Short
- Java.lang - StackTraceElement
- Java.lang - StrictMath
- Java.lang - String
- Java.lang - StringBuffer
- Java.lang - StringBuilder
- Java.lang - System
- Java.lang - Thread
- Java.lang - ThreadGroup
- Java.lang - ThreadLocal
- Java.lang - Throwable
- Java.lang - Void
- Java.lang Package extras
- Java.lang - Interfaces
- Java.lang - Errors
- Java.lang - Exceptions
- Java.lang Package Useful Resources
- Java.lang - Useful Resources
- Java.lang - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Java.lang.Process Class
Introduction
The java.lang.Process class 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.
Class Declaration
Following is the declaration for java.lang.Process class −
public abstract class Process extends Object
Class constructors
Sr.No. | Constructor & Description |
---|---|
1 |
Process() This is the Single Constructor. |
Class methods
Sr.No. | Method & Description |
---|---|
1 | abstract void destroy()
This method kills the subprocess. |
2 | abstract int exitValue()
This method returns the exit value for the subprocess. |
3 | abstract InputStream getErrorStream()
This method gets the error stream of the subprocess. |
4 | abstract InputStream getInputStream()
This method gets the input stream of the subprocess. |
5 | abstract OutputStream getOutputStream()
This method gets the output stream of the subprocess. |
6 | abstract int waitFor()
This method causes the current thread to wait, if necessary, until the process represented by this Process object has terminated. |
Methods inherited
This class inherits methods from the following classes −
- java.lang.Object