java 关机问题?
try {
Runtime.getRuntime().exec("cmd /c shutdown -s -f");
} catch (IOException e) {
e.printStackTrace();
}
怎么老弹出关机警告窗口呢?
[解决办法]
shutdown -s -t 0
发布时间: 2012-01-18 00:23:26 作者: rapoo
java 关机问题?
try {
Runtime.getRuntime().exec("cmd /c shutdown -s -f");
} catch (IOException e) {
e.printStackTrace();
}
怎么老弹出关机警告窗口呢?
[解决办法]
shutdown -s -t 0