How can we run any application using java? any experts?
what is the program for it?
Answers
Answered by
0
How To Launch External Applications Through Java Program
Runtime runtime = Runtime. getRuntime(); ...
1) public Process exec(String command) throws IOException. —>This method takes system command in the form of string.
2) public Process exec(String[] command) throws IOException.
Similar questions