public class ThreadTest {
public static void main(String[] args) throws Exception{
Runtime runtime = Runtime.getRuntime();
Process calc = runtime.exec("calc");
}
}
运行后弹出系统计算器
public class ThreadTest {
public static void main(String[] args) throws Exception{
Runtime runtime = Runtime.getRuntime();
Process calc = runtime.exec("calc");
}
}
运行后弹出系统计算器