sannuth kashikar wrote:What is the use of java.lang.Process class.How useful is this ?
It's part of Java's machinery for launching other programs. It's useful to the extent that you ... need to launch other programs!
You don't create Process objects yourself. If you launch a program with the Runtime.exec() methods, or the ProcessBuilder class, then you will get a Process object that you can use to keep track of the running program.