我想使用
CollectionUtils.isEmpty
函数。为此,我在pom.xml文件中添加了以下代码块:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-collections4</artifactId>
<version>4.4</version>
</dependency>
我的java类是:
import org.apache.commons.collections4;
public class main {
public static void main(String[] args) {
List<Integer> empty_list = new ArrayList<Integer>();
if (CollectionUtils.isEmpty(empty_list)) {
System.out.println("List is empty");
}
}
}
当我运行代码时,我得到了以下错误:
您访问的页面不存在!
它已经在我的pom.xml文件中了,我应该怎么做来解决这个问题呢?
2条答案
按热度按时间2w3kk1z51#
您应该修复
CollectionUtils
的导入eh57zj3b2#
如果您使用IntelliJ IDEA - JetBrains,则应该执行以下操作。
1.在Maven工具窗口中,右键单击链接得项目.
1.从关联式功能表中,提取“重新加载项目”。