首页> 开发问题 >其它问题 其它问题
报错:maven:java.lang.NoClassDefFoundError: org/apache/commons/io/Charsets
作者:小萝卜 2019-12-11 【 其它 】 浏览 1985
简介上网查了以后,是因为这个类到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)
相关文章
- MATLAB关闭科学计数法显示
- tf.matmul()报错expected scalar type Float but found Double
- matlab命令行双箭头消失
- scp 文件 : /目录: Permission denied
- Java compiler level does not match the version of the installed Java project facet
- Python问题:SyntaxError: Non-ASCII character '\xe2' in file
- GitHub 上传文件过大报错:remote: error: GH001: Large files detected.
- git中报unable to auto-detect email address
- bash: hadoop:command not found
- Attempt to invoke interface method 'boolean java.util.List.add(java.lang.Object)' on a null object reference