Java tutorial
//package com.java2s; import java.awt.*; import java.io.*; public class Main { public static void runExecutableOrBatch(String pathToExecutableOrBatch, String executableOrBatch) throws IOException { Desktop.getDesktop().open(new File(pathToExecutableOrBatch + executableOrBatch)); } }