通过java代码执行jar cvf命令(使用Runtime.exec()方法)

发布于 2024-12-20 18:17:38 字数 360 浏览 0 评论 0原文

我正在使用Java代码执行bat文件,通过以下java代码生成war文件

String command = "cmd /C start C:/processFolder/paas.bat";          
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec(command);

,这意味着它将执行paas.bat文件来完成一些工作。 paas.bat 中有一个命令:

jar cfv xxx.war */ .

但是,它不会将所有文件和文件夹打包到 xxx.war 中。有谁知道为什么会发生这种情况?谢谢!

I am using the Java code to execute a bat file to make a war file by the following java code

String command = "cmd /C start C:/processFolder/paas.bat";          
Runtime rt = Runtime.getRuntime();
Process pr = rt.exec(command);

which means it will execute the paas.bat file to do some jobs. There is a command within the paas.bat :

jar cfv xxx.war */ .

however, it does not jar all the file and folder into xxx.war. Does any one has the idea why this happens? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

本王不退位尔等都是臣 2024-12-27 18:17:38

该命令使用当前工作目录,这与java程序不同。您可以更改脚本以执行 cd,然后调用 jar 命令。

 cd /d <path to folder where this should execute from>
 jar ....

请捕获命令的输出、错误和异常(如果有)并添加到您的问题中。

(注#1。使用像 ant 这样的工具来完成这些任务可能更有用。ant 中的任务可以使用 ant 库从 java 程序调用。
Note#2 - 首选 ProcessBuilder启动新流程。 )

The command uses current working directory, which will be different from java program. You may change script to do a cd and then call jar command.

 cd /d <path to folder where this should execute from>
 jar ....

Please capture output , error and exceptions(if any) from the command and add to your question.

(note#1. It may be more useful to use tools like ant to do these task. The tasks in ant can be called from java program using ant libraries..
Note#2 - Prefer ProcessBuilder to launch new process. )

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文