我试图在Java程序中运行一个批处理文件,但我遇到了一些奇怪的行为。
Process p = Runtime.getRuntime().exec("cmd /c start temp.bat");
这通常运行良好,但我发现批处理文件中的管道命令不起作用。有什么建议吗?
我建议您使用CommonsExec,这将使您的生活更加轻松。你可以使用这样的代码(未经测试):
CommandLine cmdLine = new CommandLine("ping");
cmdLine.addArgument( host );
ByteArrayOutputStream stdout = new ByteArrayOutputStream();
PumpStreamHandler psh = new PumpStreamHandler( stdout );
DefaultExecutor executor = new DefaultExecutor();
executor.setStreamHandler( psh );
try {
executor.execute( cmdLine );
} catch ( Exception e ) {
}
System.out.println( stdout.toString() );
您处理了流程中的流吗?如果你不阅读它们,你的过程就会暂停。
你到底有什么问题?
编辑:也许这个答案会帮助您
使用Process对象,您可以获得OutputStream()和getInputStream()来重定向进程中的I/O。