AdSense

網頁

2018/3/7

在Eclipse匯入專案時出現Some projects cannot be imported because they already exist in the workspace錯誤無法匯入

在Eclipse如果匯入(import)專案時出現
Some projects cannot be imported because they already exist in the workspace
而無法匯入專案時,代表該專案已經存在Eclipse中了,Eclipse發現新匯入的專案名稱與既有的重複所以無法匯入。

解決方式是到被匯入的專案目錄下找到.project檔(專案目錄下的第一層即可找到),使用Notepad++或記事本開啟,然後找到<name>並修改名稱然後存檔,接著再匯入時就不會出現上面的問題了。

.project檔開啟如下。

<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
  <name>NEW_PROJECT</name><!-- 修改名稱 -->
  <comment></comment>
  <projects>
  </projects>
  <buildSpec>
    <buildCommand>
      <name>org.eclipse.jdt.core.javabuilder</name>
      <arguments>
      </arguments>
    </buildCommand>
    <buildCommand>
      <name>org.eclipse.wst.common.project.facet.core.builder</name>
      <arguments>
      </arguments>
    </buildCommand>
    <buildCommand>
      <name>org.eclipse.m2e.core.maven2Builder</name>
      <arguments>
      </arguments>
    </buildCommand>
    <buildCommand>
      <name>org.eclipse.wst.validation.validationbuilder</name>
      <arguments>
      </arguments>
    </buildCommand>
  </buildSpec>
  <natures>
    <nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
    <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
    <nature>org.eclipse.jdt.core.javanature</nature>
    <nature>org.eclipse.m2e.core.maven2Nature</nature>
    <nature>org.eclipse.wst.common.project.facet.core.nature</nature>
    <nature>org.eclipse.wst.jsdt.core.jsNature</nature>
  </natures>
</projectDescription>

如果覺得文章有幫助的話還幫忙點個Google廣告,感恩。

沒有留言:

AdSense