【问题标题】:Having a problem in building an existing dynamic web project in eclipse [duplicate]在eclipse中构建现有的动态Web项目时遇到问题[重复]
【发布时间】:2019-11-22 04:03:59
【问题描述】:

我正在我的 Eclipse 中导入一个现有项目。我收到此错误,不知道如何解决。可能是因为 JRE 或 JDK 版本。我对此有点陌生,所以我很迷茫。如果有的话,我正在寻找建议......

以下是显示的错误:

Java Build Path Problem

*Archive for required library: '.project' in project 'C***ch2' cannot be read or is not a valid ZIP file* screenshot of errors

这是类路径

.classpath

    <?xml version="1.0" encoding="UTF-8"?>
    <classpath>
    <classpathentry kind="src" path="src"/>
    <classpathentry exported="true" kind="con" path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.tomcat.runtimeTarget/Apache Tomcat v7.0">
    <attributes>
        <attribute name="owner.project.facets" value="jst.web"/>
    </attributes>
    </classpathentry>
    <classpathentry exported="true" kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
   <classpathentry exported="true" kind="lib" path=".project"/>
   <classpathentry exported="true" kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
   <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.launching.macosx.MacOSXType/Java SE 11.0.1 [11.0.1]">
    <attributes>
        <attribute name="owner.project.facets" value="java"/>
    </attributes>
   </classpathentry>
 <classpathentry kind="output" path="build/classes"/>

.项目

    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
    <name>C***ch2</name>
    <comment></comment>
    <projects>
    </projects>
    <buildSpec>
    <buildCommand>
        <name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
        <arguments>
        </arguments>
    </buildCommand>
    <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.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.wst.common.project.facet.core.nature</nature>
    <nature>org.eclipse.jdt.core.javanature</nature>
    <nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>

【问题讨论】:

    标签: java eclipse web web-deployment-project


    【解决方案1】:

    不要提出与第一个问题相同的第二个问题。 Having a problem in building an existing java project in eclipse

    消息表明 .project 文件不是有效的库。它不是 jar 文件或包含类文件的文件夹结构的目录。从项目的 Java 构建路径中删除该条目。

    【讨论】:

    • 我删除了 .classpath 和 .project 文件并重建,它可以工作
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-04-22
    • 2021-12-14
    • 2014-01-19
    • 2014-06-12
    • 1970-01-01
    • 2014-05-28
    相关资源
    最近更新 更多