我尝试使用这种方式与流程进行通信:
Process process = Runtime.getRuntime().exec("/home/username/Desktop/mosesdecoder/bin/moses -f /home/username/Desktop/mosesdecoder/model/moses.ini");
while (true) {
OutputStream stdin = null;
InputStream stderr = null;
InputStream stdout = null;
stdin = process.getOutputStream();
stderr = process.getErrorStream();
stdout = process.getInputStream();
// "write" the parms into stdin
line = "i love you" + "\n";
stdin.write(line.getBytes());
stdin.flush();
stdin.close();
// Print out the output
BufferedReader brCleanUp =
new BufferedReader(new InputStreamReader(stdout));
while ((line = brCleanUp.readLine()) != null) {
System.out.println("[Stdout] " + line);
}
brCleanUp.close();
}
这很好用。但是,当我多次编写管道时,我遇到了问题。也就是说 - 我可以多次写入Outputstream管道。错误是(对于第2次迭代):
Exception in thread "main" java.io.IOException: **Stream Closed**
at java.io.FileOutputStream.writeBytes(Native Method)
at java.io.FileOutputStream.write(FileOutputStream.java:297)
at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:82)
at java.io.BufferedOutputStream.**flush(BufferedOutputStream.java**:140)
at moses.MOSES.main(MOSES.java:60)
那么,有什么方法可以解决这个问题吗?
答案 0 :(得分:1)
在while {}
循环中,您正在调用stdin.close()。第一次循环时,流从Process中检索并恰好打开。在循环的第一次迭代中,从进程中检索流,写入,刷新和关闭(!)。循环的后续迭代然后从进程获得相同的流,但它在循环的第一次迭代(!)时关闭,并且您的程序抛出IOException
。