public static void main(String[] args) throws IOException { Desktop.getDesktop().open(new File("d:/abc.bat"));}
最简单的
Runtime.getRuntime().exec("cmd.exe /C start D:\\abc.bat");
解决不弹框只需要“start”后面加一个参数“/b”就行: