使用操作系统独立路径APACHE POI找到多个文件

时间:2019-04-02 16:01:48

标签: java android apache-poi

我一直试图将excel文件中的内容放到移动应用程序的屏幕上。该应用程序由于以下错误而无法运行: 使用操作系统独立路径'schemaorg_apache_xmlbeans / system / sD023D6490046BA0250A839A9AD24C443 / stucharhexnumber4efftype.xsb'找到多个文件

我试图在线搜索一些帮助,但没有。 有使用不同库的示例,但是那里的解决方案似乎对我没有帮助。 我试图删除并添加一些依赖项,但这也无济于事。 这是我遵循的尝试尝试以实现结果的教程: https://www.blueappsoftware.com/how-to-read-excel-file-in-android-tutorial/

这是我build.gradle文件中的代码:

dependencies {
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation files('libs/poi-ooxml-schemas-4.0.1.jar')
    implementation files('libs/poi-scratchpad-4.0.1.jar')

    implementation "org.apache.poi:poi:4.0.1"
    implementation "org.apache.poi:poi-ooxml:4.0.1"
}

我想在应用程序中放置excel内容。

0 个答案:

没有答案