1. 程式人生 > >java執行dos命令學習筆記

java執行dos命令學習筆記

ava args -a 學習 java [] down shu row

單例模式使用例子

/**
     * @param args
     * @throws IOException 
     */
    public static void main(String[] args) throws IOException {
        Runtime r = Runtime.getRuntime();           //獲取運行時對象
        //r.exec("shutdown -s -t 300");  //關閉
        r.exec("shutdown -a");  //註銷
    }

java執行dos命令學習筆記