gpt4 book ai didi

java - 使用 Java 打开终端窗口

转载 作者:太空宇宙 更新时间:2023-11-04 06:02:21 24 4
gpt4 key购买 nike

我想知道如何在 Java 应用程序中打开 Linux 终端。

进一步说明:我有一个java应用程序。我的java应用程序中有一个按钮。当您单击该按钮时,Linux 终端必须弹出打开。我不会在终端上运行或执行任何操作,我只想打开它。

我已经搜索了几个小时,但没有找到适合我想做的事情。

请自行编写代码,不要通过提供“这可能有帮助”之类的链接来回答。

最佳答案

你可以这样做:

try {
Runtime r = Runtime.getRuntime();
String myScript = .....
String[] cmdArray = {"xterm", "-e", myScript + " ; le_exec"};
r.exec(cmdArray).waitFor();
} catch (InterruptedException ex){
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}

关于java - 使用 Java 打开终端窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17850413/

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