運行報錯:
maven:java.lang.NoClassDefFoundError: org/apache/commons/io/Charsets
找不到Charsets這個類
上網查了以后,是因為這個類到2.4版本以后才有,之前的版本是沒有的。我本身的依賴是1.4的,所以找不到這個類。
我到 C:\Users\xym48\.m2\repository\commons-io\commons-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>