Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {

    public static void main(String[] args) {

        // create a new list of arguments for our process
        String[] list = { "notepad.exe", "test.txt" };

        // create the process builder
        ProcessBuilder pb = new ProcessBuilder(list);

        // check if errorstream is redirected
        System.out.println("" + pb.redirectErrorStream());
    }
}