compiler.jar 在一次执行中简单地编译文件列表

发布于 2024-09-30 03:12:19 字数 145 浏览 3 评论 0原文

是否可以在单个命令中提供多个源文件,每个源文件都有自己的目标文件?这样 Java 就不必为我编译的每个文件进行加载。我正在使用 SIMPLE_OPTIMIZATIONS。

我知道有比一次一种更好的方法,但它们似乎都需要修改代码,这对于相关项目来说需要太多时间。

Is it possible to provide a multiple source files each with their own destination file in a single command? That way Java won't have to load up for each file I compile. I am using SIMPLE_OPTIMIZATIONS.

I know there are better ways than the one at a time,, but they all seem to require code modifications which take too much time for the projects in question.

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

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

发布评论

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

评论(2

眼前雾蒙蒙 2024-10-07 03:12:19

如果您使用的是闭包库,则应使用依赖性计算脚本将代码合并到单个 javascript 文件中,然后在其上运行闭包编译器。

如果您不使用该库以使依赖关系计算器可以工作,只需执行以下操作:

cat file1.js file2.js file3.js > alljs.js
java -jar closure-compiler.jar alljs.js

If you are using the closure library, you should use the dependency calculation script to consolidate your code to a single javascript file and then run the closure compiler on it.

If you aren't using the library such that the dependency calculator will work, just do this:

cat file1.js file2.js file3.js > alljs.js
java -jar closure-compiler.jar alljs.js
森末i 2024-10-07 03:12:19

我想这是做不到的。我想情况可能是这样。

I guess it can't be done. I thought that might be the case.

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