devxlogo

Starting an Executable File From Your Application

Starting an Executable File From Your Application

You can use this simple code to start any executable application or any executable files. Suppose you want to start the netscape.exe in your application. You can easily do this by setting String s equal to the path. For example, if the path is “C:program FilesNetscapeCommunicatorProgram
etscape.exe” you can set String s equal to it and execute the application.

 import java.lang.System;import java.lang.Runtime;public class play{    public static void main(String args[]) throws Exception    {        Runtime r = Runtime.getRuntime();program         String s = "c:programFilesNetscapeCommunicatorProgram
etscape.exe";                                   r.exec(s);    }}

If you want to use the finger command to get the names of those who have logged in, you can place “finger” in String s and execute the application.

Also, suppose you want to print a file named test.txt located in drive “C:” on a HP machine connected to the System named vinoth. The code would look like this:

 s[] ={"d:\winnt\system32\print.exe","/D:\vinoth\HP","c:\test.txt"}
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist