使用RHINO API在Java中提取js文件中的函数列表
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
(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.