在我的Java应用程序中,我想运行一个调用" scons -Q implicit-deps-changed build\file_load_type export\file_load_type
" 的批处理文件
似乎我甚至无法执行我的批处理文件.我没有想法.
这就是我在Java中所拥有的:
Runtime. getRuntime(). exec("build.bat", null, new File("."));
以前,我有一个我想运行的Python Sconscript文件,但由于这不起作用,我决定通过批处理文件调用脚本,但该方法尚未成功.
批处理文件不是可执行文件.他们需要一个应用程序来运行它们(即cmd).
在UNIX上,脚本文件在文件的开头有shebang(#!),用于指定执行它的程序.双击Windows是由Windows资源管理器执行的. CreateProcess
什么都不知道.
Runtime. getRuntime(). exec("cmd /c start \"\" build.bat");
注意:使用该start \"\"
命令,将打开一个单独的命令窗口,其中包含空白标题,批处理文件中的任何输出都将显示在那里.它也应该只使用`cmd/c build.bat",在这种情况下,如果需要,可以从Java中的子进程读取输出.
有时线程执行进程时间高于JVM线程等待进程时间,它会在您调用的进程需要一些时间进行处理时发生,请使用waitFor()命令,如下所示:
try{ Process p = Runtime.getRuntime().exec("file location here, don't forget using / instead of \\ to make it interoperable"); p.waitFor(); }catch( IOException ex ){ //Validate the case the file can't be accesed (not enought permissions) }catch( InterruptedException ex ){ //Validate the case the process is being stopped by some external situation }
这样,JVM将停止,直到您正在调用的进程在继续执行线程执行堆栈之前完成.
Runtime runtime = Runtime.getRuntime(); try { Process p1 = runtime.exec("cmd /c start D:\\temp\\a.bat"); InputStream is = p1.getInputStream(); int i = 0; while( (i = is.read() ) != -1) { System.out.print((char)i); } } catch(IOException ioException) { System.out.println(ioException.getMessage() ); }
如果您正在谈论的话,使用java运行批处理文件...
String path="cmd /c start d:\\sample\\sample.bat"; Runtime rn=Runtime.getRuntime(); Process pr=rn.exec(path);`
这应该做到这一点.
ProcessBuilder是运行外部进程的Java 5/6方式.
用于运行批处理脚本的可执行文件cmd.exe
使用该/c
标志来指定要运行的批处理文件的名称:
Runtime.getRuntime().exec(new String[]{"cmd.exe", "/c", "build.bat"});
从理论上讲,你也应该能够以这种方式运行Scons,尽管我没有测试过这个:
Runtime.getRuntime().exec(new String[]{"scons", "-Q", "implicit-deps-changed", "build\file_load_type", "export\file_load_type"});
编辑:阿马拉,你说这不起作用.您列出的错误是从Windows框上的Cygwin终端运行Java时出现的错误; 这是你在做什么的?问题是Windows和Cygwin有不同的路径,因此Windows版本的Java将无法在Cygwin路径上找到scons可执行文件.如果事实证明这是你的问题,我可以进一步解释.