1

可能重复:
如何从 Java 中运行的进程中获取 bash 命令退出代码?

嗨,我有一个程序,它是一个简单的使用 bash 命令解密另一个文件的程序,./nv0914 < nv0914.challenge其中 nv0914 是一个 unix 可执行文件,而 nv0914.challenge 是一个用于解密的文本文件。现在,当我从 bash 运行它时,然后如果我运行命令echo ${?},我会得到一个值 0,这很好。但现在我必须实施攻击,为此我需要通过 java 程序打印退出值。我现在有这个代码:

import java.io.*;
   import java.util.*;

   public class ExecBashCommand {
     public static void main(String args[]) throws Exception {


       Runtime runtime = Runtime.getRuntime();
       Process process = runtime.exec("./nv0914 < nv0914.challenge");

      /* InputStream is = process.getInputStream();
       InputStreamReader isr = new InputStreamReader(is);
       BufferedReader br = new BufferedReader(isr);
       String line;*/

System.out.println("Exit Code: "+process.exitValue()); 
       //System.out.printf("Output of running %s is:", Arrays.toString(args));

      /* while ((line = br.readLine()) != null) {
         System.out.println(line);
       }*/

     }
    } 

但是这个程序给了我一个错误:

Exception in thread "main" java.lang.IllegalThreadStateException: process hasn't exited
        at java.lang.UNIXProcess.exitValue(UNIXProcess.java:172)
        at ExecBashCommand.main(ExecBashCommand.java:16)

关于如何获得退出值的任何建议。谢谢

4

1 回答 1

7

process.waitFor()在尝试读取退出值之前,您是否尝试过调用?

于 2011-05-04T17:38:25.340 回答