Java进程执行的Windows进程没有终止

前端之家收集整理的这篇文章主要介绍了Java进程执行的Windows进程没有终止前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我从 Java在Windows上创建一个进程.我的问题是这个过程不会终止.这是一个示例程序:
import java.io.IOException;

public class Test {

/**
 * @param args
 * @throws IOException
 * @throws InterruptedException
 */
public static void main(String[] args) throws IOException,InterruptedException {
    Process process = Runtime.getRuntime().exec("cmd /c dir");
    process.waitFor();
    }
}

为了超出我的理解,这个程序永远不会完成.如果“cmd / c dir”被替换为ipconfig以及其他的东西,这是真的.

我可以看到使用ProcessExplorer,java创建了cmd进程.这个样本显然是一个简化;在我的原始程序中,我发现如果我在一段时间后调用process.destroy(),并检查cmd进程输出,那么该命令将被成功执行.

我已经尝试过与Java 1.5和1.6的各种版本.我的操作系统是Windows XP Pro,SP 2.

解决方法

很可能只需要读取进程的stdout和stderr,否则它会在输出缓冲区已满时挂起.如果您将stderr重定向到stdout,这样最简单,只是为了安全起见:
public static void main(String[] args) throws IOException,InterruptedException {
        String[] cmd = new String[] { "cmd.exe","/C","dir","2>&1" };
        Process process = Runtime.getRuntime().exec(cmd);
        InputStream stdout = process.getInputStream();
        while( stdout.read() >= 0 ) { ; }
        process.waitFor();
    }
}
原文链接:https://www.f2er.com/java/123983.html

猜你在找的Java相关文章