apache commons collections CollectionUtils工具类简单使用

来源:互联网 发布:python windows 路径 编辑:程序博客网 时间:2024/06/10 00:00
import org.apache.commons.collections.CollectionUtils; import java.util.ArrayList;import java.util.List; public class CollectionUtilsTest {      public static void main(String[] args) {        List<Integer> a = new ArrayList<Integer>();        List<Integer> b = null;        List<Integer> c = new ArrayList<Integer>();        c.add(5);        c.add(6);        //判断集合是否为空        System.out.println(CollectionUtils.isEmpty(a));   //true        System.out.println(CollectionUtils.isEmpty(b));   //true        System.out.println(CollectionUtils.isEmpty(c));   //false         //判断集合是否不为空        System.out.println(CollectionUtils.isNotEmpty(a));   //false        System.out.println(CollectionUtils.isNotEmpty(b));   //false        System.out.println(CollectionUtils.isNotEmpty(c));   //true         //两个集合间的操作        List<Integer> e = new ArrayList<Integer>();        e.add(2);        e.add(1);        List<Integer> f = new ArrayList<Integer>();        f.add(1);        f.add(2);        List<Integer> g = new ArrayList<Integer>();        g.add(12);        //比较两集合值        System.out.println(CollectionUtils.isEqualCollection(e,f));   //true        System.out.println(CollectionUtils.isEqualCollection(f,g));   //false         List<Integer> h = new ArrayList<Integer>();        h.add(1);        h.add(2);        h.add(3);;        List<Integer> i = new ArrayList<Integer>();        i.add(3);        i.add(3);        i.add(4);        i.add(5);        //并集        System.out.println(CollectionUtils.union(i,h));  //[1, 2, 3, 3, 4, 5]        //交集        System.out.println(CollectionUtils.intersection(i,h)); //[3]        //交集的补集        System.out.println(CollectionUtils.disjunction(i,h)); //[1, 2, 3, 4, 5]        //e与h的差        System.out.println(CollectionUtils.subtract(h,i)); //[1, 2]        System.out.println(CollectionUtils.subtract(i,h)); //[3, 4, 5]     } }

★ 数组转Collection

使用Apache Jakarta Commons Collections:

import org.apache.commons.collections.CollectionUtils;     String[] strArray = {"aaa", "bbb", "ccc"};   List strList = new ArrayList();   Set strSet = new HashSet();   CollectionUtils.addAll(strList, strArray);   CollectionUtils.addAll(strSet, strArray);  

CollectionUtils.addAll()方法的实现很简单,只是循环使用了Collection的add()方法而已。

如果只是想将数组转换成List,可以用JDK中的java.util.Arrays类:

import java.util.Arrays;     String[] strArray = {"aaa", "bbb", "ccc"};   List strList = Arrays.asList(strArray);  

不过Arrays.asList()方法返回的List不能add对象,因为该方法的实现是使用参数引用的数组的大小来new的一个ArrayList。

★ Collection转数组

直接使用Collection的toArray()方法,该方法有两个重载版本:

Object[] toArray();     T[] toArray(T[] a);  

★ Map转Collection

直接使用Map的values()方法。

★ List和Set转换

List list = new ArrayList(new Hashset());// Fixed-size listList list = Arrays.asList(array);// Growablelist list = new LinkedList(Arrays.asList(array));// Duplicate elements are discardedSet set = new HashSet(Arrays.asList(array));

0 0
原创粉丝点击