首页> 开发问题 >其它问题 其它问题
报错:maven:java.lang.NoClassDefFoundError: org/apache/commons/io/Charsets
作者:小萝卜 2019-12-11 【 其它 】 浏览 2298
简介上网查了以后,是因为这个类到2.4版本以后才有,之前的版本是没有的。我本身的依赖是1.4的,所以找不到这个类。我到 C:Usersxym48.m2repositorycommons-iocommons-io 中,把里面的各个版本都打开看了,确实只有2.4以后的版本里面有这个类。
运行报错:
maven:java.lang.NoClassDefFoundError: org/apache/commons/io/Charsets
找不到Charsets这个类
上网查了以后,是因为这个类到2.4版本以后才有,之前的版本是没有的。我本身的依赖是1.4的,所以找不到这个类。
我到 C:Usersxym48.m2repositorycommons-iocommons-io 中,把里面的各个版本都打开看了,确实只有2.4以后的版本里面有这个类。
修改依赖:
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
很赞哦! (0)
相关文章
- tf.matmul()报错expected scalar type Float but found Double
- MapReduce报错:Error: java.io.IOException: Initialization of all the collectors failed. Error in last collector was :interface javax.xml.soap.Text
- module 'torch' has no attribute 'gesv'
- 解决:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.2:compile
- 心路历程——毕设程序mr跑不通的问题
- Maven C盘用户文件下没有.m2
- scp 文件 : /目录: Permission denied
- pycharm无法识别自己的文件夹的程序
- Unreachable statement
- 创建Maven项目时提示web.xml is missing and <failOnMissingWebXml> is set to true错误解决方案
