使用 Eclipse IDE 在 java 中设置类路径
我有一个 Eclipse 项目,其外部文件夹包含大量 JAR 文件(遗留库)。我宁愿添加对此外部文件夹的引用,而不是在 Eclipse 中添加所有 jar(“添加外部 Jar”)。在“配置构建浴”中,我添加了一个“外部类文件夹”。如果我这样做而不是添加 Jar,我的程序将不再编译。我在使用这个选项的过程中是否遗漏了一些东西?
谢谢
I have an Eclipse project with an external folder containing a lot of JAR files (legacy libraries) . instead of adding all the jars in Eclipse ("add external Jar"), I would prefer to add a ref to this external folder. In the "configure build bath", I'm adding a "External Class Folder". If I'm doing that instead of adding the Jar, my program is not compiling anymore. Am I missing something on the way I should use this option ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
如果它不起作用,请具体说明您的编译失败的原因,特别是发布 Eclipse 返回的错误消息,我会知道该怎么办。
Try this:
If it doesnt work, please be specific in what way your compilation fails, specifically post the error messages Eclipse returns, and i will know what to do about it.
您可以创建新的用户库,
然后
创建您的库并(添加 Jars 按钮)包含您的特定 Jars。
我希望这可以帮助你。
You can create new User library,
On
and create your library and (add Jars buttons) include your specific Jars.
I hope this can help you.
只是遇到了同样的问题,对于那些有相同问题的人来说,可能是您在将库添加到项目时将其放在模块路径而不是类路径上
Just had the same issue, for those having the same one it may be that you put the library on the modulepath rather than the classpath while adding it to your project