如何将一个 Eclipse 项目作为库导入到另一个项目中?

How to import one Eclipse project as a library into another?

我想在另一个项目中使用我的一个 eclipse 项目。有没有一种 'smooth' 方法可以做到这一点,而不必将一个文件导出为 jar 文件并将其导入另一个文件?特别是因为我同时在两个项目上工作,我希望导入项目的最新更改能够自动构建并导入到另一个项目中。这可能吗?

有可能。右键单击您的项目 -> 构建路径 -> 配置构建路径。切换到“项目”选项卡并添加一个。它将作为图书馆使用。

P.S。您可能还想检查一下:Creating a java library with Eclipse

this question 的回答解释了如何在 eclipse 中导入您自己的库。

引用答案。

Just have "Project" reference your "Library", on windows the process is (using menu / tab names)

  1. Go to: Project -> Properties -> Java Build Path -> Projects
  2. Client Add...
  3. Select your "Library" project from the list
  4. Click Ok
  5. Click the other Ok Now your done and you can use import for classes in your "Library"