Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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));
    }
}