我一直在尝试谷歌这一段时间,但没有任何成功。我希望能在这里解决我的问题。
第一功能:
public void startTFServer(Channel c) {
try {
ProcessBuilder procBuilder = new ProcessBuilder("tfs.exe");
procBuilder.redirectErrorStream();
Process proc = null;
System.out.println(Runtime.getRuntime().freeMemory());
proc = procBuilder.start();
System.out.println(Runtime.getRuntime().freeMemory());
StreamGobbler gobbler = new StreamGobbler(proc.getInputStream(), "STD_OUT");
gobbler.start();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
捕获过程输出的线程:
private class StreamGobbler extends Thread {
InputStream is;
String type;
private StreamGobbler(InputStream is, String type) {
this.is = is;
this.type = type;
}
@Override
public void run() {
try {
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line = null;
while ((line = br.readLine()) != null) {
System.out.println(type + "> " + line);
}
}
catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
问题: 运行应用程序时,输入每次都在同一个地方中断。我正在使用“Process class”运行的应用程序是一个需要大量内存才能运行的服务器,这可能是导致该进程无法完成加载我的应用程序的原因之一吗?我以为记忆会耗尽,但我无法真正诊断它。
非常感谢任何帮助!
答案 0 :(得分:1)
我很抱歉,如果我错了,但我认为你正在耗尽外部流程的输出,而不是等到它完成才能继续阅读。我的意思是,基本上:
while ((line = br.readLine()) != null) {
System.out.println(type + "> " + line);
}
如果进程停止写入输出一秒钟,您的记录器将停止记录。如果再次开始写作,你就会失控。
答案 1 :(得分:1)
我注意到一个问题:
procBuilder.redirectErrorStream();
这不是你想要的。这是一个getter方法,它告诉您redirectErrorStream属性的值是什么。可能是您有错误而且您被阻止,因为他们没有被阅读。因此,您需要使用setter方法:请参阅API redirectErrorStream(boolean)
procBuilder.redirectErrorStream(true);