我需要找到在Mac上安装Firefox应用程序的目录,我为此运行终端命令:
find / -name Firefox.app 2>/dev/null
现在我需要在java程序中运行相同的命令,我的代码是:
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class kill{
public static void main(String[] args) throws Exception{
String cmds[] = {"find","/","-name","Firefox.app"};
Process p = Runtime.getRuntime().exec(cmds);
p.waitFor();
//int exitVal = p.waitFor();
//System.out.println("Process exitValue:" + exitVal);
BufferedReader reader =
new BufferedReader(new InputStreamReader(
p.getInputStream()));
String line = reader.readLine();
while (line != null) {
line = reader.readLine();
System.out.println(line);
}
}
}
但它并没有让我回到这条路上。谁能告诉我这里有什么问题..任何帮助将不胜感激
循环中存在逻辑错误。 它应该是这样的:
String line = reader.readLine();
while (line != null) {
System.out.println(line);
line = reader.readLine();
}
虽然,无论如何,Firefox应该总是在/Applications中。