java:自动关机程序
public class Demo1{
public static void main(String[] args ){
//100秒后关机
Runtime.getRuntime().exec("shutdown -s -t 100");
//取消关机
Runtime.getRuntime().exec("shutdown -a");
}
}
public class Demo1{
public static void main(String[] args ){
//100秒后关机
Runtime.getRuntime().exec("shutdown -s -t 100");
//取消关机
Runtime.getRuntime().exec("shutdown -a");
}
}
本文标题:java:关机程序
本文链接:https://www.haomeiwen.com/subject/xycmqktx.html
网友评论