In this chapter, you will learn:
What the Process API is
How to create a native process
How to get information about a new process
How to get information about the current process
How to get information about all system processes
How to set permissions to create, query, and manage native processes
What Is the Process API?
The Process API consists of classes and interfaces that let you work with native processes. Using the API, you can:
Create new native processes from Java code
Get process handles for native processes whether they were created by Java code or by other means
Destroy running processes
Query processes ...