Java集合中移除所有的null值
2022/6/9 1:20:08
本文主要是介绍Java集合中移除所有的null值,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Java集合中移除所有的null值
https://blog.csdn.net/qq_36135928/article/details/86605104
org.apache.commons.collections.subtract方法只能移除第一个null元素。
public class CollectionRemoveNullTest { @Test public void test() { List<String> nullList = new ArrayList<>(); nullList.add("a"); nullList.add(null); nullList.add("b"); nullList.add("c"); nullList.add(null); Collection<String> removeNull = subtract(nullList, Arrays.asList((String) null)); Iterator<String> it = removeNull.iterator(); while (it.hasNext()) { String s = it.next(); assertTrue(s != null); } } /** Returns a new {@link Collection} containing <tt><i>a</i> - <i>b</i></tt>. The cardinality of each element <i>e</i> in the returned {@link Collection} will be the cardinality of <i>e</i> in <i>a</i> minus the cardinality of <i>e</i> in <i>b</i>, or zero, whichever is greater. @param a the collection to subtract from, must not be null @param b the collection to subtract, must not be null @return a new collection with the results @see Collection#removeAll */ public static Collection subtract(final Collection a, final Collection b) { ArrayList list = new ArrayList(a); for (Iterator it = b.iterator(); it.hasNext()
这篇关于Java集合中移除所有的null值的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25Springboot应用的多环境打包项目实战
- 2024-11-25SpringBoot应用的生产发布项目实战入门教程
- 2024-11-25Viite多环境配置项目实战:新手入门教程
- 2024-11-25Vite多环境配置项目实战入门教程
- 2024-11-25Springboot应用的生产发布资料:新手入门教程
- 2024-11-25创建springboot项目资料:新手入门教程
- 2024-11-25创建Springboot项目资料:新手入门教程
- 2024-11-25JAVA创业资料:初学者必备的JAVA创业指南
- 2024-11-25Java创业资料:新手入门必备Java编程教程与创业指南
- 2024-11-25JAVA语音识别项目项目实战入门教程