gpt4 book ai didi

java - 如何使用 Runtime.getRuntime().exec() 打开名称中带有空格的应用程序?

转载 作者:行者123 更新时间:2023-12-02 09:18:31 27 4
gpt4 key购买 nike

所以我正在尝试制作一个通用应用程序,并且我正在尝试使其具有打开应用程序的能力。所以,我想办法让它打开一个应用程序,如果它是一个单词,但有空格,它永远不会工作。我就是这样做的:

    if(textField.getText().startsWith("application open")){
try {
String string1 = textField.getText().substring(17, textField.getText().length());
Runtime.getRuntime().exec("open /Applications/\"" + string1 + "\".app");
textArea.append("Opening application " + string1 + "..." + newline);
} catch (IOException ioe) {
ioe.printStackTrace();
}
}

如果有人能帮助我,那就太好了!提前致谢,霍华德·斯塔克

最佳答案

使用exec的版本需要一个String[]:

这对我有用:

String cmds[] = { "open", "/Applications/Font Book.app" };
Runtime.getRuntime().exec(cmds);

然而这不是:

Runtime.getRuntime().exec("open /Applications/Font Book.app");

后者只能使用空格来分解命令参数,因此被解析为命令 open,后跟由空格分隔的 2 个参数。前者 - 采用 String[]exec 版本 - 单独传递每个参数,因此不存在此问题。

关于java - 如何使用 Runtime.getRuntime().exec() 打开名称中带有空格的应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12848707/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com