java建立程式

gunsmoke發表於2020-10-31
public class ThreadTest {
    public static void main(String[] args) throws Exception{
        Runtime runtime = Runtime.getRuntime();
        Process calc = runtime.exec("calc");
    }
}

執行後彈出系統計算器

相關文章