Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我批量启动一个 jar 文件,并希望等待该工具完成,然后再继续执行下一个批处理命令。我怎么能这样做?
java -jar "tool.jar" parameter /wait
这会等待工具结束吗?或者jar会异步执行吗?
call java -jar "tool.jar" parameter /wait
如果您使用 call 运行程序或另一个 bat 文件,则调用 bat 文件将等待,直到调用的 bat 文件完成。