Here you can find the source of executeBatFile(String batFile)
public static void executeBatFile(String batFile) throws IOException
//package com.java2s; //License from project: Apache License import java.io.IOException; public class Main { public static void executeBatFile(String batFile) throws IOException { Runtime runtime = Runtime.getRuntime(); runtime.exec(batFile);/* ww w . j a va 2 s . c o m*/ } }