先看下面的程序段:
- public static void main(String[] args) {
- List<Integer> arrays = new ArrayList<Integer>();
- arrays.add(2);
- arrays.add(null);
- arrays.add(456);
- arrays.add(null);
- arrays.add(789);
- System.out.println(arrays);
- }
注:一个list,向其中插入数据时,也插入一些null。程序输出如下:
- [2, null, 456, null, 789]
现在有这个需求:去除list中null 元素。尝试的代码如下:
- public static void main(String[] args) {
- List<Integer> arrays = new ArrayList<Integer>();
- arrays.add(2);
- arrays.add(null);
- arrays.add(456);
- arrays.add(null);
- arrays.add(789);
- arrays.remove(null);
- System.out.println(arrays);
- }
调用remove(object)方法,程序的输出如下:
- [2, 456, null, 789]
可以看出:只remove了第一个null元素。这不是我们期望的结果。继续找方法。考虑到有一个removeAll(Collection<?> c) ,尝试使用。代码如下:
- public static void main(String[] args) {
- List<Integer> arrays = new ArrayList<Integer>();
- arrays.add(2);
- arrays.add(null);
- arrays.add(456);
- arrays.add(null);
- arrays.add(789);
- List<Integer> nullArr = new ArrayList<Integer>();
- nullArr.add(null);
- arrays.removeAll(nullArr);
- System.out.println(arrays);
- }
程序的输出如下:
- [2, 456, 789]
这是我们期望的结果。你可能会尝试下面这样使用:
- arrays.removeAll(null);
很遗憾,程序出错了:Exception in thread "main" java.lang.NullPointerException。
到这里,我们似乎找到了解决问题的办法。但是,如果我们的系统中,有这种类型的List<E>,如List<TempProductDto>、List<merchantDto> 时,我们要从这些List中移除掉null,就要创建如下的代码:
- List<TempProductDto> nullTempProd = new ArrayList<TempProductDto>(1);
- nullTempProd.add(null);
- List<MerchantDto> nullMerchant = new ArrayList<MerchantDto>(1);
- nullMerchant.add(null);
每种类型,就要创建对应类型的List,并把null 放入到List中。是不是很麻烦。能不能写个公用的Util类呢?以下是我写的Util 类:
- import java.io.Serializable;
- import java.util.AbstractList;
- import java.util.RandomAccess;
- public class NullCollection extends AbstractList<Object>
- implements RandomAccess, Serializable {
- private static final long serialVersionUID = 5206887786441397812L;
- @Override
- public Object get(int index) {
- return null;
- }
- @Override
- public int size() {
- return 1;
- }
- public boolean contains(Object obj) {
- return null == obj;
- }
- private Object readResolve() {
- return null;
- }
- }
- import java.util.Collection;
- import java.util.List;
- public class YHDCollectionUtils {
- public static final Collection NULL_COLLECTION = new NullCollection();
- public static final <T> Collection<T> nullCollection() {
- return (List<T>) NULL_COLLECTION;
- }
- }
使用我写的util类进行测试。代码如下:
- public static void main(String[] args) {
- List<Integer> arrays = new ArrayList<Integer>();
- arrays.add(2);
- arrays.add(null);
- arrays.add(456);
- arrays.add(null);
- arrays.add(789);
- arrays.removeAll(YHDCollectionUtils.nullCollection());
- System.out.println(arrays);
- }
执行结果如下:
- [2, 456, 789]
Util 类可以成功的去除List中的null元素。
也许你会问:为什么要把null放入List中,只有2B青年会这么干?在一般业务中,我们确实不需要把null放入List中,但有一种场景:从页面封装的List,如下面的代码:
- <input name="dto.productList[0].name" value="我是名称1">
- <input name="dto.productList[0].price" value="我是价格1">
- <input name="dto.productList[2].name" value="我是名称2">
- <input name="dto.productList[2].price" value="我是价格2">
- <input name="dto.productList[4].name" value="我是名称3">
- <input name="dto.productList[4].price" value="我是价格3">
OGNL 会自动把dto.productList[1]、dto.productList[3] 的object封装成null。因此,我们在操作dto.productList 前,优先把 productList 中null去除掉,防止 null 引起的空指针异常。
原文地址:http://www.iteye.com/topic/1132718
相关推荐
在这个方法中,你可以检查请求参数,如果发现有null值,可以进行替换操作。 2. `postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)`: 在目标...
Java中List对象列表实现去重或取出及排序的方法 在Java中,对List对象列表实现去重或取出及排序是一种常见的操作。下面将详细介绍相关的方法和实现。 1. 实体类重写equals和hashCode方法 在Java中,想要去重List...
本篇文章将详细介绍如何在Java中去除JSON数据中的`null`空值。 1. **Jackson库的解决方案** Jackson是Java中广泛使用的JSON处理库,它提供了丰富的功能,包括序列化和反序列化。在处理`null`值时,Jackson提供了一...
Java中List去重和Stream去重的解决方法 List去重是Java中的一种常见操作,对于List中的重复元素进行去重,从而使得List中的元素变得独一无二。 Java中提供了多种方法来实现List去重,下面我们将对其中的一些方法...
`isEmpty()`方法首先检查对象是否为`null`,然后针对`List`和`String`两种特定类型的对象进行了额外的检查。对于`List`,它检查列表的大小是否为零;对于`String`,它使用`trim()`方法去除两端的空白字符,然后比较...
在方法内部,我们首先判断List对象是否为空,如果为空,则返回null。然后,我们创建了一个HashMap对象,并将List对象中的Map对象添加到HashMap对象中。在添加过程中,我们使用id值作为key值,并将Map对象作为值添加...
- **避免在方法中返回`null`**:如果`null`不是预期的结果,应抛出异常。 - **使用空集合**:对于返回集合的方法,返回空集合而不是`null`。 - **应用空对象模式**:创建“空对象”代表默认行为,而不是返回`null`。...
接下来就是要在用户退出的时候将此用户从 Application 中去除,我们可以在 Global.asax 的 session_End 事件中处理: ```csharp void session_End(object sender, EventArgs e) { // 在会话结束时运行的代码。 //...
Set接口下的集合类如HashSet不存储重复元素,可以方便地去除列表中的重复项。将List转换为Set,然后再转换回List即可: ```java List<PenBean> uniquePenBeanList = new ArrayList(new HashSet(penBeanList)); ``` ...
Java 8的Stream API中的`distinct()`方法可以去除重复元素,但默认是基于对象的equals()和hashCode()方法。为了基于特定字段去重,我们可以创建一个辅助工具类`StreamUtil`,提供一个`distinctByKey`方法,该方法...
"Demo java去除校验NULL值的过程"这个项目旨在演示如何在Java代码中优雅地处理NULL值,提高代码的健壮性和可读性。下面我们将详细探讨这个问题。 1. **NullPointerException的理解** NullPointerException是Java中...
另一种方法是利用List类提供的方法,如`ForEach`,配合匿名方法来过滤空字符串,并将结果存储到新的数组中: ```csharp // 创建List List<string> list = new List(); // 使用ForEach遍历并过滤空字符串 strArray....
在去除ArrayList中重复自定义对象元素时,我们需要重写equals方法,因为contains方法和remove方法都依赖于equals方法。下面是一个示例代码: ```java public class Person { private String name; private int ...
List 具有一定长度存在索引的对象集合(长度为0不存在索引,长度>0存在索引) 常见列表 1、定长列表 默认值null 例如:List<int> fixedLengthList = new List(2)、List<int> fixedLengthList = new List(8) List<int> ...
要去除这个阴影效果,可以在ListView的XML布局文件中设置属性`android:fadingEdge="none"`。这会告诉ListView不要显示任何类型的边缘渐变效果,从而达到去除了阴影的目的。 示例代码如下: ```xml android:id="@...
首先,字符串的每个字符被添加到ArrayList中,然后复制到HashSet中以去除重复的字符。接着,通过比较Set和List来计算每个字符的出现次数,结果存储在一个HashMap中,键为字符,值为出现次数。最后,遍历Map并打印出...
在本文中,我们将讨论在Python的pandas库中操作DataFrame对象,去除指定列为空的行的几种方法。 首先,pandas库是Python中广泛使用的数据分析工具,它提供了一系列的数据结构和数据分析工具。DataFrame是pandas中最...
泛型方法是Java编程语言中的一个重要特性,它允许在方法定义时指定类型参数,从而提高了代码的重用性和安全性。这种技术在数据查询场景中尤为关键,因为它可以确保操作的数据类型一致,避免了运行时可能发生的...
- distinct()方法:该方法用于去除流中重复的元素。与map()结合使用时,可以实现对流中元素(如年龄)的去重。 - skip()与limit()方法:skip()方法用于跳过流中的前几个元素,limit()方法用于限制流中元素的数量。这...
Remove Setting Method 去除设置方法 Hide Method 隐藏方法 Replace Constructor with Factory Method 用工厂方法代替构造器 Encapsulate Downcast 封装向下转型 Replace Error Code with ...