Java

How To Run An Application in Java Program1 min read

Java Code: How to open an application using java program

This program will open (run) applications (Notepad, Calculator) using Java program. To open/run application we are using instance of Runtime.getRuntime() and method exec().

Leave a Comment