JVM退出后继续运行进程

时间:2014-05-24 19:50:25

标签: java process

我需要在jwm退出后运行脚本。我有:

//run the script
Runtime.getRuntime().exec("cmd /c " + script.getAbsolutePath());

System.exit(0);

脚本在继续之前等待5秒钟,但每当jwm退出时它就会被杀死。我该如何防止这种情况?

1 个答案:

答案 0 :(得分:0)

哇。回答了我自己的问题。 " cmd / c start"做了伎俩。