我正在努力让以下代码正常工作,以便我可以在其他地方使用它。
实际上,它(应该)启动另一个进程,在其中运行python,并向python提供一些命令。但是,实际上,除非我关闭流到该进程,否则永远不会发送python命令。我认为flush()应该强制这种情况发生,但它似乎没有起作用。任何人都可以提供任何有关为什么flush()可能无法正常工作以及我可以做些什么来避免这种情况的见解?感谢。
请注意,如果我调用close(),则会发送命令。但是,我希望能够在这一个命令之后发送更多命令,因此在这里使用close()似乎是不可接受的。 (我最终会关闭()一切)
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.util.Scanner;
public class Foo {
public static void main(String[] args) throws IOException {
Process cmd = Runtime.getRuntime().exec("python");
InputStream inStream = cmd.getInputStream();
Thread stdout = new Thread(new stdOutReader(inStream));
stdout.start();
InputStream errStream = cmd.getErrorStream();
Thread stderr = new Thread(new stdOutReader(errStream));
stderr.start();
OutputStream outStream = cmd.getOutputStream();
OutputStreamWriter os = new OutputStreamWriter(outStream);
PrintWriter pWriter = new PrintWriter(outStream, true);
pWriter.println("print \"Testing..\"");
pWriter.flush();
int x = 0;
while (x < 100){
//Do stuff here (will not be an infinite loop in actual code)
}
pWriter.close();
}
private static class stdOutReader implements Runnable{
InputStream inStream;
public stdOutReader(InputStream inStream){
this.inStream = inStream;
}
public void run() {
InputStreamReader reader = new InputStreamReader(this.inStream);
Scanner scan = new Scanner(reader);
while (scan.hasNext()) {
System.out.println(scan.next());
System.out.flush();
}
}
}
}
答案 0 :(得分:0)
请考虑使用Apache Commons Executor而不是直接使用Runtime.exec()
API。
答案 1 :(得分:0)
我的程序Foo看不出任何问题。我用一个回输输出(而不是python)的程序测试它,它运行得很好。