用于生成 Java 源代码的 Java/Scala 库
可能的重复:
用于生成 Java 源文件的 Java API
有没有好的用于生成 Java 源代码(不是字节码)的库?
Possible Duplicate:
A Java API to generate Java source files
Is there a good library for generating Java source code (not bytecode)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CodeModel 和 Eclipse JDT 为这个人工作,他最终选择了CodeModel。
CodeModel and Eclipse JDT worked for this fellow, and he ultimately chose CodeModel.
试试这个http://code.google.com/p/javaparser/我用它来重写我现有代码库的大部分,也可以用它构建 AST,它是一个在 Eclipse 核心上编写的可读包装器......
Try this http://code.google.com/p/javaparser/ i use this to rewrite huge portions of my existing code base, also ASTs can be constructed with this and it is a readable wrapper written over eclipse core....