想使用 java servlet 执行 echot.BAT 文件。我使用了以下代码。
Process croppingProcess = Runtime.getRuntime()
.exec("C:Windows/system32/cmd /c echot.BAT", null, new File("C:restapi_bat/echot"));
int processOutput = croppingProcess.waitFor();
if(processOutput == 0){
success = true;
//do your work here
}
但得到错误
"C:Windows/system32/cmd" (in directory "C:restapi_bat\echot"): CreateProcess error=267, 目录名无效
C:\restapi_bat 中的文件 echot.BAT
注意:使用 tomcat 7
月关宝盒
相关分类