使用Python 分析Java 源代码?
我想为 Java 项目创建一个源代码分析器(如 FindBugs 和其他静态分析程序),能够检测某些方法调用。
我更喜欢使用 Python 来完成它,但是任何建议都会很棒!
我将首先研究 FindBugs 源代码,但如果有人可以向我解释基本概念和如果这很容易做到,我将非常感激。
谢谢您的宝贵时间。
奥利维尔.
i would like to create a source code analyser for Java Project (like FindBugs and other static analysis programs) that would be able to detect certain method calls.
I would prefer to do it using Python, but any advice would be great !
I'm going to start by studying the FindBugs source code, but if anyone could explain to me the underlying concepts and if it's easily do-able, i would be really grateful.
Thank you for your time.
Olivier.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读这本书:语言实现模式。这是一本非常容易理解的书,您可以衡量实现您想要实现的目标所需的努力
Read the book : Language implementation Patterns. It is a very accessible book out there and you can gauge the effort that will be required to achieve what you want to achieve