0

How would I receive and send information to console in a different program in Java? The program I am trying to receive console from was made in Torque. I don't know if that makes a difference. I have been reading up on different topics, but all seem to be telling me for the program that is asking for it. I currently don't have any code of this because of lack of information about the topic. Thank your for you help and time if you can help me.

4

1 に答える 1

0

これはOS固有の種類の質問です...あるプロセスからの標準出力を別のプロセスの標準入力にパイプする方法...

Unixは通常、次のようにパイプ記号(|)を使用してこれを実行します。

$ ls | wc

これにより、lsから出力が取得され、wcの入力に送信されます...この情報が役に立たない場合は、質問を拡張してより具体的にすることを検討してください。何を試しましたか?

于 2012-06-07T21:39:44.757 に答える