Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

public class Main {

    public static void main(String[] args) {

        // create a new list of arguments for our process
        List<String> list = new ArrayList<String>();
        list.add("notepad.exe");
        list.add("test.txt");

        // create the process builder
        ProcessBuilder pb = new ProcessBuilder(list);
        try {
            // start the subprocess
            System.out.println("Starting the process..");
            pb.start();
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}