Java calls DOS to implement scheduled shutdown. Friends who need it can refer to it
The code is as follows:
public static void shutdown(){ System.out.print("请输入多少分钟后关机:"); Scanner scanner = new Scanner(System.in); int minute = scanner.nextInt()*60; Runtime runtime = Runtime.getRuntime(); String shutdown = "shutdown -s -t "+minute; try { runtime.exec(shutdown); } catch (IOException e) { e.printStackTrace(); } }
The above is the detailed content of Example of Java calling DOS to implement scheduled shutdown. For more information, please follow other related articles on the PHP Chinese website!