使用 Java 工具确定 JavaScript 在页面上加载哪些外部资源
我正在寻找一种方法来识别给定页面中的 JavaScript 从其他 URL 加载哪些外部资源(如果有),以便我可以创建某种“依赖关系图”。我可以通过解析 HTML 和 CSS 来获取它们正在加载的资源,但我不确定 JavaScript 的情况。
这可能吗?用Java可以实现吗? (不是 JavaScript,而是一个独立的 Java 工具。)
I'm searching for a way to identify what external resources (if any) the JavaScript in a given page is loading from other URLs so I can create some sort of "dependency graph". I can get the resources the HTML and CSS are loading by parsing them, but I'm not sure about the JavaScript.
Is that possible? Can it be done in Java? (Not JavaScript, a stand-alone Java tool.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许您可以编写一些监视 HTTP 通信的代码,并在其下运行您的 html 文档。它应该在日志中告诉您文档请求了哪些 url。
Maybe you could write some code that monitors HTTP communications, and run your html document under it. It should tell you in a log which url's have been requested by the document.
也许你可以通过 HTMLUnit 执行你的脚本并覆盖 Rhino 的外部加载函数
只是我的 2 美分
Perhaps you can execute your script via HTMLUnit and override Rhino's external loading functions
Just my 2 cents