Zenity bash命令不适用于Java



我正在尝试使用zenity命令从用户那里获取输入。这是我传递给zenity的命令:

zenity --question --title "Share File" --text "Do you want to share file?"

以下是使用Java执行命令的代码:

private String[] execute_command_shell(String command)
{
    System.out.println("Command: "+command);
    StringBuffer op = new StringBuffer();
    String out[] = new String[2];
    Process process;
    try
    {
        process = Runtime.getRuntime().exec(command);
        process.waitFor();
        int exitStatus = process.exitValue();
        out[0] = ""+exitStatus;
        BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
        String line = "";
        while ((line = reader.readLine()) != null)
        {
            op.append(line + "n");
        }
        out[1] = op.toString();
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    return out;
}

虽然我得到了一个输出对话框,但标题只有第一个单词"分享",问题的文本也只显示一个单词"做"

这种奇怪的行为有什么解释吗?周围有什么工作?

这对我有效:

Runtime.getRuntime().exec(new String[]{"zenity","--question","--title","Share File","--text","Do you want to share file?"})

我建议在java代码中拆分参数,这样您就可以进行检查,而不是用引号传递整个命令。

下面是一个包含拆分以处理报价的示例:

String str = "zenity --question --title "Share File" --text "Do you want to share file?"";
String quote_unquote[] = str.split(""");
System.out.println("quote_unquote = " + Arrays.toString(quote_unquote));
List<String> l = new ArrayList<>();
for(int i =0; i < quote_unquote.length; i++) {
    if(i%2 ==0) {
        l.addAll(Arrays.asList(quote_unquote[i].split("[ ]+")));
    }else {
        l.add(quote_unquote[i]);
    }
}
String cmdarray[] = l.toArray(new String[l.size()]);
System.out.println("cmdarray = " + Arrays.toString(cmdarray));
Runtime.getRuntime().exec(cmdarray);

或者,您也可以使用UiPost for Java来创建此对话框。这样一来,您就不必安装zenity,也不局限于windows上的linux或gtk。

String userInput = new UiBooster().showTextInputDialog("Do you want to share file?");

相关内容

  • 没有找到相关文章

最新更新