关机代码如下
import java.io.IOException; public class guanji { public static void main(String [] args) throws IOException{ //编写一个自动关机程序 //提示用户,电脑将在3600s后自动关机 Runtime.getRuntime().exec("shutdown -s -t 3600"); System.out.println("家人,你的电脑将在3600s后关机"); } } 开机代码如下
import java.io.IOException; public class guanji { public static void main(String [] args) throws IOException{ //编写一个自动关机程序 //提示用户,电脑将在3600s后自动关机 Runtime.getRuntime().exec("shutdown -a"); System.out.println("家人,你的电脑将取消关机"); } }
?
?