Java Runtime.getRuntime():从执行命令行程序中获取输出
我正在使用运行时从我的Java程序运行命令提示符命令。但是,我不知道如何获取命令返回的输出。
这是我的代码:
Runtime rt = Runtime.getRuntime();
String[] commands = {"system.exe", "-send" , argument};
Process proc = rt.exec(commands);
我尝试做,但这没有返回任何东西。执行该命令应返回两个以分号分隔的数字。我怎样才能在变量中打印出来?System.out.println(proc);
以下是我现在使用的代码:
String[] commands = {"system.exe", "-get t"};
Process proc = rt.exec(commands);
InputStream stdIn = proc.getInputStream();
InputStreamReader isr = new InputStreamReader(stdIn);
BufferedReader br = new BufferedReader(isr);
String line = null;
System.out.println("<OUTPUT>");
while ((line = br.readLine()) != null)
System.out.println(line);
System.out.println("</OUTPUT>");
int exitVal = proc.waitFor();
System.out.println("Process exitValue: " + exitVal);
但是我没有得到任何东西作为我的输出,但是当我自己运行该命令时,它工作正常。