java 关机问题?try {Runtime.getRuntime().exec(cmd /c shutdown -s -f)} catch (IOException e) {e.pr
java 关机问题?
try {
Runtime.getRuntime().exec("cmd /c shutdown -s -f");
} catch (IOException e) {
e.printStackTrace();
}
怎么老弹出关机警告窗口呢?
[解决办法]
shutdown -s -t 0
java 关机问题?
try {
Runtime.getRuntime().exec("cmd /c shutdown -s -f");
} catch (IOException e) {
e.printStackTrace();
}
怎么老弹出关机警告窗口呢?
[解决办法]
shutdown -s -t 0