Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 JavaPoet 重新创建一个类。最好的方法是什么?
基本上,我想用一个带有附加语句的方法生成另一个类。
JavaPoet 不能轻易修改现有代码。这可能非常困难,因为诸如导入解析之类的功能依赖于正确解析类型。
您可以通过发出一个新文件然后使用 StringBuilder 手动连接导入和成员来作弊。您可能需要一些正则表达式。