通过ant执行JavaScript(HTML)文件并将输出重定向到文件
如何通过ant执行JavaScript文件并将stdout和stderr重定向到文件?
例如,假设我们有
helloWorld.js
console.log('Hello world!');
我需要 ant 目标来生成
stdout.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Rhino 从 ant 执行 Javascript。请参阅此问题或任何这些问题作为示例。
You can use Rhino to execute Javascript from ant. See this question or any of these questions for examples.
Node.js 会对此有所帮助。无需 HTML。
Node.js would help with this. No HTML necessary.