如何通过命令行[Java]杀死特定的Firefox配置文件

时间:2018-08-13 03:55:07

标签: java firefox command-line command

我想通过Java中的命令行关闭/杀死特定的Firefox配置文件。

根据我读到的here,我可以使用以下代码启动任何Firefox配置文件:

Runtime rt = Runtime.getRuntime();

Process pr = rt.exec("cmd.exe /c start firefox -P " + profile); 

这很好用。

但是,该文档还指出,可以通过-kill命令杀死特定的Firefox配置文件。但是,我尝试了几种不同的变体,但它们似乎都不起作用:

rt.exec("cmd.exe /c firefox kill -P " + profile);
rt.exec("cmd.exe /c kill firefox -P " + profile);
rt.exec("cmd.exe /c pkill firefox -P " + profile);

文档指出这些“其他(命令)选项需要记录”,但是我没有找到关于如何搜索数小时后如何杀死特定配置文件的文档。

要使用的正确语法/命令是什么?

我在Windows计算机上使用Java。

谢谢

0 个答案:

没有答案