-5

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

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

我一直在寻找几个小时,但没有找到适合我想做的事情。

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

4

2 回答 2

3

你可以这样做:

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();
}
于 2013-07-25T06:18:57.670 回答
1

I got the answer from the post

import java.io.*;

class TerminalLauncher
{
    public static void main(String args[]) throws IOException
    {
        String command= "/usr/bin/xterm"; 
        Runtime rt = Runtime.getRuntime();  
        Process pr = rt.exec(command);
    }
}

Hope this helps

于 2013-07-25T06:21:59.147 回答