通过java代码执行jar cvf命令(使用Runtime.exec()方法)
我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该命令使用当前工作目录,这与java程序不同。您可以更改脚本以执行 cd,然后调用 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.
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. )