eclipse不能識別工程

IfThenElse-Meituan發表於2013-10-24

    使用eclipse從svn上checkout工程的時候,有時候會出現eclipse不能識別工程的現象。可以嘗試手動編寫.classpath和.project檔案,新增到工程的根目錄下。

    .project檔案:

    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
        <name>trust-tailf-in-svn</name>
        <comment></comment>
        <projects>
        </projects>
        <buildSpec>
            <buildCommand>
                <name>org.eclipse.jdt.core.javabuilder</name>
                <arguments>
                </arguments>
            </buildCommand>
        </buildSpec>
        <natures>
            <nature>org.eclipse.jdt.core.javanature</nature>
        </natures>
    </projectDescription>


    .classpath檔案:

    <?xml version="1.0" encoding="UTF-8"?>
    <classpath>
        <classpathentry kind="src" path="src"/>
        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
        <classpathentry kind="output" path="bin"/>
    </classpath>

   

相關文章