我正在尝试使用opencsv库罐子文件,但是导入时,我会收到错误消息,说"失败了从文件 *.jar加载插件描述符"。
我在罐子内检查了meta-inf/plugin.xml文件,但没有。
所以,我现在正在导入OpenCSV的源代码。我在库源代码中使用的Java 7 API遇到了错误。" java.bean"的所有用法。
以下是build.gradle
文件内容:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.amadeus.jbisht.mytestproject"
minSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.+'
testCompile 'junit:junit:4.12'
}
请让我知道我在这里错过了什么。我可以看到它在"外部库"下列出,但Android Studio没有接下它。
gradle依赖性是要走的方法:
compile group: 'com.opencsv', name: 'opencsv', version: '3.8+'
,例如,
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.0'
compile group: 'com.opencsv', name: 'opencsv', version: '3.8+'
}
gradle将自动导入所需的文件并集成库。
opencsv需要一些java.bean
库,但它们不包括在Android SDK中。
解决此问题:
- 下载opencsv的来源
- 下载OpenBean
- 将两者都包括在您的Android Studio Project中
- 在OpenCsv源中替换
localpath.bean.*
的java.bean.*
依赖性