gpt4 book ai didi

java - 由 : java. lang.ClassNotFoundException : org. apache.commons.io.FileUtils 引起

转载 作者:搜寻专家 更新时间:2023-10-31 20:00:34 24 4
gpt4 key购买 nike

<分区>

我正在测试 maven 及其功能。我正在尝试使用 commons-io 将字符串写入文本文件

import org.apache.commons.io.FileUtils;
...
public void writeToFile(String fileName){
File file = new File(fileName);
...
FileUtils.writeStringToFile(file,rowEntry); //rowEntry is a String
}

我已将 commons-io 添加到依赖项中

POM.xml

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.5</version>
</dependency>

编译成功但运行时抛出异常

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/io/FileUtils
at com.RandCollections.StringFinder.writeToFile(StringFinder.java:704)
at com.RandCollections.StringFinder.menu(StringFinder.java:123)
at com.RandCollections.StringFinderMain.main(StringFinderMain.java:28)
Caused by: java.lang.ClassNotFoundException: org.apache.commons.io.FileUtils
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 3 more

我觉得我遗漏了一些东西,你能帮忙指出吗?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com