Java程序调用自动关机指令 1分钟内自动关机

package com.swift;//可以不要这句

import java.io.IOException;

public class Shutdown100 {

    public static void main(String[] args) {
        try {
            Runtime.getRuntime().exec("shutdown -s -t 60");//其实就这一句 shutdown -r是重启
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

 

posted @ 2017-10-06 17:43  Advancing-Swift  阅读(3645)  评论(0编辑  收藏  举报