跨多个项目使用 Java 包 Eclipse
随着我用 Java 进行越来越多的编码,我正在创建一个我经常使用的方法库。 Eclipse 中有没有一种方法可以设置它,以便我可以将这些方法从库项目的源文件夹导入到其他项目,而无需将它们复制到每个单独的项目?
我知道我可以使用构建路径做一些事情,但是当我尝试为我的库添加源时,我在它链接到的项目中收到包错误。
谢谢
As I do more and more coding in Java I am creating a library of methods that I use often. Is there a way in Eclipse to set it so that I can import these methods from the source folder of the library project to other projects without copying them to each individual project?
I know there is something that I can do with the Build Path, but when I try to add the source for my library I get a package error in the project it is linked to.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要从另一个项目导入/复制代码——重点是使用共享项目的输出。只需表明该项目依赖于其他项目即可;不要考虑共享项目的来源。
Don't import/copy the code from another project--the point is to use the output of the shared project. Just indicate that the project depends on the other project; don't think about the shared project's source.