5

我需要在我的 java 程序中执行一个命令,但是在执行命令之后,它需要另一个参数(在我的例子中是一个密码)。如何管理Runtime.getRuntime().exec()接受参数以进一步执行的输出过程?

我试过new BufferedWriter(new OutputStreamWriter(signingProcess.getOutputStream())).write("123456");了,但没有用。

4

3 回答 3

7

您的程序没有 --password 选项吗?通常所有基于命令行的程序都可以,主要是脚本。

Runtime.getRuntime().exec(new String[]{"your-program", "--password="+pwd, "some-more-options"});

或者更复杂且更容易出错的方法:

try {
    final Process process = Runtime.getRuntime().exec(
            new String[] { "your-program", "some-more-parameters" });
    if (process != null) {
        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    DataInputStream in = new DataInputStream(
                            process.getInputStream());
                    BufferedReader br = new BufferedReader(
                            new InputStreamReader(in));
                    String line;
                    while ((line = br.readLine()) != null) {
                        // handle input here ... ->
                        // if(line.equals("Enter Password:")) { ... }
                    }
                    in.close();
                } catch (Exception e) {
                    // handle exception here ...
                }
            }
        }).start();
    }
    process.waitFor();
    if (process.exitValue() == 0) {
        // process exited ...
    } else {
        // process failed ...
    }
} catch (Exception ex) {
    // handle exception
}

此示例打开一个新线程(请记住并发和同步),它将读取您的进程的输出。类似地,只要它没有终止,您就可以为您的进程提供输入:

if (process != null) {
    new Thread(new Runnable() {
        @Override
        public void run() {
            try {
                DataOutputStream out = new DataOutputStream(
                        process.getOutputStream());
                BufferedWriter bw = new BufferedWriter(
                        new OutputStreamWriter(out));
                bw.write("feed your process with data ...");
                bw.write("feed your process with data ...");
                out.close();
            } catch (Exception e) {
                // handle exception here ...
            }
        }
    }).start();
}

希望这可以帮助。

于 2013-05-22T10:07:34.857 回答
2
Runtime r=Runtime.getRuntime();
process p=r.exec("your string");

试试这个方法

于 2013-05-22T10:10:48.687 回答
1

如果你在 Windows 上工作,你应该在参数中给出你的 windows 命令

访问此链接了解更多详情:http ://docs.oracle.com/javase/6/docs/api/java/lang/Runtime.html

于 2013-05-22T10:02:30.323 回答