使用RHINO API在Java中提取js文件中的函数列表

发布于 2024-10-31 05:54:26 字数 162 浏览 3 评论 0原文

我想提取有关我拥有的 js 文件的信息。

无论如何,是否可以列出使用 Rhino 的可编写脚本的对象中的函数?

一如既往,我们非常感谢任何帮助。

I'd like to pull out information regarding the js file I have.

Is there anyway to list the functions within the scriptable object you have using Rhino?

Any help as always is much appreciated.

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

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

发布评论

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

评论(1

燕归巢 2024-11-07 05:54:26

试试这个
(1)在命令提示符下找到 js.jar 文件
(2)你应该得到js>迅速的
(3)输入此命令 load("完整的 *.js 文件路径");
(4)for(var x in global()){print(x)}

这将打印全局命名空间中的所有内容。

希望这会有所帮助,围绕此您可以创建自己的方法。

Try this out
(1)Go to you js.jar file in command prompt
(2)you should get js> prompt
(3)type this command load("full *.js file path");
(4)for(var x in global()){print(x)}

This will print every thing in the global namespace.

hope this helps, around this u can create your own approach.

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