5dp
这会打开,但我无法关闭它。
我该如何关闭?
我也尝试了import java.util.*;
import java.io.*;
public class main {
public static void main(String[] args) throws IOException {
Runtime run = Runtime.getRuntime();
run.exec("calc");//for opening calculator
}
}
方法。
答案 0 :(得分:0)
你从以下开始:
Runtime run = Runtime.getRuntime();
Process process = run.exec("calc");
请注意,您在Process
类型的变量中保留对已启动流程的引用
稍后您可以通过destroy()
上的Process
调用
process.destroy();