Java 将POI与gradle一起使用时出现重复输入错误

Java 将POI与gradle一起使用时出现重复输入错误,java,android,apache,apache-poi,android-gradle-plugin,Java,Android,Apache,Apache Poi,Android Gradle Plugin,我启动了一个需要ApachePOI库的项目。我将它们粘贴到build.gradle文件中,一切看起来都很好。直到我构建调试应用程序 我得到以下错误: 错误:任务的执行失败 “:mobile:transformClassesWithJarMergingForDebug” com.android.build.api.transform.TransformException:java.util.zip.zipeException:重复条目: org/apache/xmlbeans/xml/stream

我启动了一个需要ApachePOI库的项目。我将它们粘贴到build.gradle文件中,一切看起来都很好。直到我构建调试应用程序

我得到以下错误:

错误:任务的执行失败 “:mobile:transformClassesWithJarMergingForDebug”

com.android.build.api.transform.TransformException:java.util.zip.zipeException:重复条目: org/apache/xmlbeans/xml/stream/Location.class

我尝试过删除和添加排除组和模块,但没有任何效果。当我让调试apk构建并运行应用程序时,应用程序崩溃,因为在打开DOCX文件时找不到org.apache.xmlbeans.xmlpoptions。文档文件工作正常

这是我的build.gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "{application_id}"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"

        // Enabling multidex support.
        multiDexEnabled true


    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    compileOptions {
        encoding "UTF-8"
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

    dexOptions {
        javaMaxHeapSize "4g"
        preDexLibraries = false
    }

    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false

        // set to true to turn off analysis progress reporting by lint
        quiet false
        // if true, stop the gradle build if errors are found
        abortOnError true
        // if true, only report errors
        ignoreWarnings false
        // turn off checking the given issue id's
        disable 'TypographyFractions', 'TypographyQuotes'
        // if true, generate a text report of issues (false by default)
        textReport true
        // location to write the output; can be a file or 'stdout'
        textOutput 'stdout'
        // if true, generate an HTML report (with issue explanations, sourcecode, etc)
        htmlReport true
        // optional path to report (default will be lint-results.html in the builddir)
        htmlOutput file("lint-report.html")
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/INDEX.LIST'
        exclude 'META-INF/services/org.apache.sis.storage.DataStoreProvider'
        exclude 'META-INF/BCKEY.SF'
        exclude 'META-INF/spring.handlers'
        exclude 'META-INF/spring.schemas'
        exclude 'META-INF/services/org.apache.tika.detect.Detector'
        exclude 'META-INF/BCKEY.DSA'
        exclude 'META-INF/services/org.apache.sis.internal.jaxb.TypeRegistration'
        exclude 'META-INF/services/org.apache.tika.parser.Parser'
        exclude 'META-INF/cxf/bus-extensions.txt'
    }

}

repositories{

    mavenCentral()
    maven {url "https://github.com/karussell/mvnrepo/raw/master/releases"}
    maven {url  "http://dl.bintray.com/lukaville/maven"}
    maven {url  "http://dl.bintray.com/dasar/maven"}

}

configurations {
    all*.exclude group: 'ch.qos.logback'
    all*.exclude group: 'org.slf4j', module: 'jcl-over-slf4j'
    all*.exclude group: 'org.slf4j', module: 'jul-to-slf4j'
    all*.exclude group: 'org.slf4j', module: 'log4j-over-slf4j'
    all*.exclude group: 'org.slf4j', module: 'jcl-over-slf4j'
    all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
    all*.exclude group: 'org.slf4j', module: 'slf4j-simple'
}


dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    wearApp project(':wear')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.google.android.gms:play-services:8.4.0'
    compile 'com.android.support:design:23.1.1'
    compile 'com.android.support:support-annotations:23.1.1'

    compile 'com.getbase:floatingactionbutton:1.10.1'

    compile ('org.slf4j:slf4j-android:1.7.13'){
        exclude group: 'net.sf.log4jdbc'
        exclude group: 'org.slf4j.logger'
    }

    compile 'org.jsoup:jsoup:1.7.3'
    compile 'de.jetwick:snacktory:1.1'

    compile 'com.googlecode.juniversalchardet:juniversalchardet:1.0.3'

    // The material design file browser library
    compile 'com.nbsp:library:1.02'

    // Epub library
    compile 'nl.siegmann.epublib:epub-core:1.0@aar'


    // Begin for Office documents dependencies

    compile 'org.apache.xmlbeans:xmlbeans:2.6.0'

    compile ('org.apache.poi:poi:3.13'){
        transitive = false
        exclude group: 'org.apache.xmlbeans'
        exclude module: 'org.apache.xmlbeans'
    }

    compile ('org.apache.poi:poi-ooxml:3.13'){
        transitive = false
        exclude group: 'org.apache.xmlbeans'
        exclude module: 'org.apache.xmlbeans'
    }

    compile ('org.apache.poi:poi-scratchpad:3.13'){
        transitive = false
        exclude group: 'org.apache.xmlbeans'
        exclude module: 'org.apache.xmlbeans'
    }

    compile ('org.apache.tika:tika-core:1.11'){
        transitive = false
        exclude group: 'org.apache.xmlbeans'
    }
    compile ('org.apache.tika:tika-parsers:1.11'){
        transitive = false
        exclude group: 'org.apache.xmlbeans'
        exclude module: 'org.apache.xmlbeans'
    }
    // End for Office documents dependencies

    // PDF document library
    compile 'com.itextpdf:itextpdf:5.5.8'



}
我已经使用org.apache.xmlbeans依赖项检查了是否存在任何其他依赖项,但没有找到

如果有人想知道答案,请随时回答,但如果你能告诉我们你是如何得出答案的,我将不胜感激

提姆

编辑:

执行此命令时:

gradlew-q依赖项移动:依赖项--配置编译

(此处输出:) org.apache.xmlbeans依赖项只列出一次。是否存在与任何默认java组件相关的问题

第2号编辑:

我发现Java有这样一个组件:javax/xml/stream/Location.class
因此,我想我需要将其从构建中删除,但我不知道如何删除。

您可以尝试类似的方法

  • 解压缩
    jar
    文件。(只需将
    .jar
    扩展名更改为
    .zip
  • 这将删除重复的文件
  • 使用
    jar cf xmlbeans.jar-C(解压文件夹的路径)重新创建
    jar
    (注意,命令末尾有一个点)
  • 使用此重新生成的
    jar

  • 两个月前我遇到了这个错误,库中有多个类重复了android给出的错误,所以我在Java项目中创建了JSON数据,并将其导入到android代码中,@PankajNimgade JSON数据是什么意思?你知道如何从gradle构建中排除javax.xml.stream.Location吗?我尝试了几种方法它不起作用,我必须读取包含静态值的excel文件。因此,我在Eclipse中创建了一个java项目,导入poi库,从excel读取数据,并通过从excel工作表中生成JSON数据来保存所有内容。这就是我如何管理的。很遗憾,这对我的问题不起作用。是的,你是对的,我必须重新考虑d三个吊具,所以我就这样做了。你能看看这个吗