How to remove null values collections Code Example
java remove List null element
dataList.removeAll(Collections.singleton(null));
how to remove null values collections
2. HOW TO REMOVE NULL VALUES
List list = new ArrayList
(Arrays.asList("Java",null,"Python",null, "Ruby"));
CollectionUtils.filter(list, PredicateUtils.notNullPredicate());
==> removes nulls
System.out.println(list);