简单JAVA自动关机与取消(完全无用,可以直接cmd)
在main函数中输入
Runtime.getRuntime().exec("shutdown -s -t 3600");
一小时后关机
Runtime.getRuntime().exec("shutdown -a");
取消关机
在main函数中输入
Runtime.getRuntime().exec("shutdown -s -t 3600");
一小时后关机
Runtime.getRuntime().exec("shutdown -a");
取消关机