在Android中使用Apache POI时的兼容性问题

时间:2015-12-28 14:51:05

标签: java android excel apache-poi

我在使用Apache POI时遇到以下问题

Error:Execution failed for task ':app:transformClassesWithDexForDebug'. 
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_31\bin\java.exe'' finished with non-zero exit value 2

我在gradle依赖项中添加了以下存储库。

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'org.apache.poi:poi:3.14-beta1'
    compile 'org.apache.poi:poi-ooxml:3.14-beta1'
}

我也从poi版本3.9进行了测试。但每次我遇到同样的问题。

如果我发表评论

compile 'org.apache.poi:poi-ooxml:3.14-beta1'

App无任何例外地运行。

1 个答案:

答案 0 :(得分:2)

添加图书馆时,您的应用有超过65,000种方法。您需要启用multi-dex,为此修改您的gradle构建文件,如下所示:

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.0"

    defaultConfig {
        ...
        minSdkVersion 14
        targetSdkVersion 21
        ...

        // Enabling multidex support.
        multiDexEnabled true
    }
    ...
}

dependencies {
  compile 'com.android.support:multidex:1.0.0'
}

在你的Manifest中添加MultiDexApplication类:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android.multidex.myapplication">
    <application
        ...
        android:name="android.support.multidex.MultiDexApplication">
        ...
    </application>
</manifest>

请参阅http://developer.android.com/tools/building/multidex.html