windows之java執行多條cmd命令


用java語句執行多條cmd命令

public static void main(String[] args) {
        String command1="cmd /c net start mysql";
        String command2="cmd /c net stop mysql";
        String command3="cmd /c start e:/blog";
        String command4="cmd /c start f:/視頻";
        String[] arrs={command1,command2,command3,command4};
        try {
        for (String string : arrs) {
            Runtime.getRuntime().exec(string);
        }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM