Eclipse插件开发中如何手动生成类文件?
我想手动生成类文件到某个地方(不是构建路径中的输出文件夹),我找到了一些类,如 JavaBuilder、Compiler、IncrementalProjectBuilder 等,但我仍然不知道如何使用这些类将类文件编译为指定位置。如何做到这一点? 谢谢。
I want to generate class files to some place(not the output folder in the build path) manually ,i found some classes like JavaBuilder,Compiler,IncrementalProjectBuilder,etc,but i still dont know how to use these classes to compile class files to a specified location.How to do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让 Eclipse 在 bin 目录中生成类文件,然后使用 Ant 将类文件复制到您希望的任何目录(WEB-INF?)。
You can let Eclipse generate the class files in the bin directory and use Ant to copy the class files to whichever directory (WEB-INF?) you wish.