Java tutorial
import java.io.File; import java.io.IOException; 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); try { pb = pb.redirectError(ProcessBuilder.Redirect.from(new File("c:/"))); pb.start(); } catch (IOException ex) { ex.printStackTrace(); } } }