https://github.com/XhstormR/GetBilibili
上面的是我写的一个程序,会在后台调用 FFmpeg。
有时我强制终止了 Java 程序,但发现后台的 FFmpeg 还在进行合并。
下面的是我写的一个示例代码:
public class A {
public static void main(String[] args) throws IOException {
Process process = new ProcessBuilder().command("notepad.exe").start();
while (true) {
System.out.println("123");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
想实现在 Ctrl+C 后,记事本也能自动退出,有办法实现吗?谢谢各位了。
1
XhstormR OP 已解决。
|