使用Java中的命令行工具进行通信

前端之家收集整理的这篇文章主要介绍了使用Java中的命令行工具进行通信前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想从我的Java程序中使用linux命令行工具.我启动程序并使用Process类(http://download.oracle.com/javase/6/docs/api/java/lang/Process.html)获取输出

 /* @param args
  * @throws IOException 
  */
 public static void main(String[] args) throws IOException {
    Process proc = Runtime.getRuntime().exec("octave");

    BufferedReader reader = 
        new BufferedReader(new InputStreamReader(proc.getInputStream()));

    BufferedReader errorReader = 
        new BufferedReader(new InputStreamReader(proc.getInputStream()));

    BufferedWriter writer = 
        new BufferedWriter(new OutputStreamWriter(proc.getOutputStream()));

    int c;
    while((c = proc.getInputStream().read()) != -1) {
       System.out.print((char)c);
    }
    System.out.println("End");
 }

我得到以下输出

GNU Octave,version 3.0.5 Copyright
(C) 2008 John W. Eaton and others.
This is free software; see the source
code for copying conditions. There is
ABSOLUTELY NO WARRANTY; not even for
MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. For details,type
`warranty’.

Octave was configured for
“i486-pc-linux-gnu”.

Additional information about Octave is
available at 07001.

Please contribute if you find this
software useful. For more information,
visit
07002

Report bugs to (but
first,please read
07003 to
learn how to write a helpful report).

For information about changes from
prevIoUs versions,type `news’.

奇怪的是,如果我在终端中运行八度音程,则正常输出如下:

:~/workspace/Console/src/c$octave
GNU Octave,version 3.0.5
Copyright (C) 2008 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. For details,type `warranty’.

Octave was configured for “i486-pc-linux-gnu”.

Additional information about Octave is available at 07001.

Please contribute if you find this software useful.
For more information,visit 07002

Report bugs to (but first,please read
07003 to learn how to write a helpful report).

For information about changes from prevIoUs versions,type `news’.

octave:1>

因此,请求输入的行中的字符不会在我的输入流中发送.为什么?是否可以检测是否请求输入?

谢谢你的回答!

海因里希

最佳答案
* nix上的程序可以检测它们是否正在与终端或其他流进行通信.许多交互式shell类型的程序基于此做出不同的反应(通过设置不同的提示,而不是读取一些init文件,甚至根本不启动).

您可能遇到其中一种情况.

此外,也许使用Java API进行八度音阶可能是更简单的方法:例如joPAS.

原文链接:https://www.f2er.com/java/438330.html

猜你在找的Java相关文章