通过ant执行JavaScript(HTML)文件并将输出重定向到文件

发布于 2024-12-09 21:21:18 字数 302 浏览 0 评论 0原文

如何通过ant执行JavaScript文件并将stdout和stderr重定向到文件?
例如,假设我们有

helloWorld.js

console.log('Hello world!');  

我需要 ant 目标来生成

std​​out.txt

Hello world!

创建包含所需 JavaScript 文件的临时 HTML 文件,然后执行 tmp.html 是可以接受的,但如果可能的话,我想省略此步骤。

How to execute JavaScript file by ant and redirect stdout and stderr to files?
For example let say we have

helloWorld.js

console.log('Hello world!');  

I need ant target to proudce

stdout.txt

Hello world!

It is acceptable to create temporary HTML file that include needed JavaScript file and then execute tmp.html, but I would like to omit this step if possible.

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

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

发布评论

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

评论(2

蘑菇王子 2024-12-16 21:21:18

您可以使用 Rhino 从 ant 执行 Javascript。请参阅此问题或任何这些问题作为示例。

You can use Rhino to execute Javascript from ant. See this question or any of these questions for examples.

坏尐絯 2024-12-16 21:21:18

Node.js 会对此有所帮助。无需 HTML。

Node.js would help with this. No HTML necessary.

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