Android环境下 HtmlUnit 简单使用
程序员文章站
2022-05-05 12:31:56
...
1.HtmlUnit 配置
依赖
implementation 'net.sourceforge.htmlunit:htmlunit:2.40.0'
2.常见问题
More than one file was found with OS independent path
工程生成了不止一个META-INF/DEPENDENCIES文件,看起来是因为多个 jar 包里包含了同样的文件(DEPENDENCIES.txt),导致打包时因为担心相互覆盖问题而提示出错
在报该编译错误的module的build.gradle中 android 属性下 加入如下配置项,排除掉中间生成的DEPENDENCIES.txt文件
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
java.lang.BootstrapMethodError: Exception from call site #4 bootstrap method