0

We have a folder which consists of multiple sub-folder and each sub-folder is having jar files.

Now, we need to add all the jars to eclipse classpath. Is there any better way to add all these jars? rather than adding each file or manually editing .classpath of eclipse?

4

2 回答 2

0

我认为你只能手动完成。

但是:您可以在命令行上进行“查找”,并且使用相同的 sed/awk 魔法,您可能能够自动为您的 .classpath 文件创建条目。

或者:您应该研究诸如 maven 或 gradle 之类的构建系统。这样的系统允许您指定依赖项- 然后构建系统将为您创建一个 eclipse 项目。

换句话说:手动为您的项目构建“元”信息已成为过去。如今,您只需指定要使用的内容,然后使用工具为您完成其余工作。

于 2015-03-09T09:29:33.270 回答
0

您可以选择所有 jar 文件,然后通过右键单击它们,您必须单击构建路径。eclipse会自动在classpath中添加所有的jar文件...

希望对你有帮助

于 2015-03-09T09:42:38.210 回答