Launching Another Application from Java

Launching Another Application from Java

Question:
Is it possible to launch another application from aJava application (not an applet)?

Answer:
Yes. There are two classes of interest for performingsystem level functions such as this:

java.lang.Runtime and
java.lang.Process.

The Runtime class provides several flavors of the exec()method, which takes a command and executes it by creating a separate processusingfacilities provided by the OS you’re running on:

       public Processexec(String command);       public Process exec(String command, String envp[]);       public Process exec(String cmdarray[]);       public Process exec(String cmdarray[], String envp[]); 
exec() returns an instance of a Process which can then be used bythe Java application to interact with the launched program, waitfor it to finish, and so on.

The only tricky part in accomplishing this is getting hold of aRuntime object with which to call exec(). To get an instance ofa Runtime object, call:

Runtime.getRuntime() 
This method returns a static Runtime object similar to System.out,which is guaranteed to exist for every invocation of the program.

The following program demonstrates how to use these classes to launch anapplication from a Java program. It takes a command line as itsargument and simply executes it as if the user had invoked it. Notethat the program captures the output of the launched application bygetting an InputStream from the running Process and readingfrom it as if it were a normal stream.

import java.io.*;public class CmdExec {       public CmdExec(String cmdline) {               try {                       String line;                       Process p = Runtime.getRuntime().exec(cmdline);                       DataInputStream input = new DataInputStream(                                                       p.getInputStream());                       while ((line = input.readLine()) != null) {                               System.out.println(line);                       }                       input.close();               } catch (Exception err) {                       System.out.println(“EXEC failed: ” + err.toString());                       err.printStackTrace();               }       }       public static void main(String argv[]) {               new CmdExec(argv[0]);       }} 

Share the Post:
XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes

ransomware cyber attack

Why Is Ransomware Such a Major Threat?

One of the most significant cyber threats faced by modern organizations is a ransomware attack. Ransomware attacks have grown in both sophistication and frequency over the past few years, forcing

data dictionary

Tools You Need to Make a Data Dictionary

Data dictionaries are crucial for organizations of all sizes that deal with large amounts of data. they are centralized repositories of all the data in organizations, including metadata such as