我试图从我的 Java 程序中运行一个批处理文件,但我遇到了一些奇怪的行为。
Process p = Runtime.getRuntime().exec("cmd /c start temp.bat");
这通常运行良好,但我发现批处理文件中的管道命令不起作用。有什么建议么?
我试图从我的 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 对象,您可以使用 getOutputStream() 和 getInputStream() 从流程重定向 I/O。