1. 程式人生 > >關於集合的工具類

關於集合的工具類

pack ise exce pty property 其他 contains sid 工具

/**
 * Copyright (c) 2005-2012 springside.org.cn
 */
package com.thinkgem.jeesite.common.utils;

import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import org.apache.commons.beanutils.PropertyUtils;
import org.apache.commons.lang3.StringUtils; import com.thinkgem.jeesite.modules.sys.entity.User; /** * Collections工具集. * 在JDK的Collections和Guava的Collections2後, 命名為Collections3. * @author calvin * @version 2013-01-15 */ @SuppressWarnings("rawtypes") public class Collections3 { /** * 提取集合中的對象的兩個屬性(通過Getter函數), 組合成Map. * *
@param collection 來源集合. * @param keyPropertyName 要提取為Map中的Key值的屬性名. * @param valuePropertyName 要提取為Map中的Value值的屬性名. */ @SuppressWarnings("unchecked") public static Map extractToMap(final Collection collection, final String keyPropertyName, final String valuePropertyName) { Map map
= new HashMap(collection.size()); try { for (Object obj : collection) { map.put(PropertyUtils.getProperty(obj, keyPropertyName), PropertyUtils.getProperty(obj, valuePropertyName)); } } catch (Exception e) { throw Reflections.convertReflectionExceptionToUnchecked(e); } return map; } /** * 提取集合中的對象的一個屬性(通過Getter函數), 組合成List. * * @param collection 來源集合. * @param propertyName 要提取的屬性名. */ @SuppressWarnings("unchecked") public static List extractToList(final Collection collection, final String propertyName) { List list = new ArrayList(collection.size()); try { for (Object obj : collection) { list.add(PropertyUtils.getProperty(obj, propertyName)); } } catch (Exception e) { throw Reflections.convertReflectionExceptionToUnchecked(e); } return list; } /** * 提取集合中的對象的一個屬性(通過Getter函數), 組合成由分割符分隔的字符串. * * @param collection 來源集合. * @param propertyName 要提取的屬性名. * @param separator 分隔符. */ public static String extractToString(final Collection collection, final String propertyName, final String separator) { List list = extractToList(collection, propertyName); return StringUtils.join(list, separator); } /** * 轉換Collection所有元素(通過toString())為String, 中間以 separator分隔。 */ public static String convertToString(final Collection collection, final String separator) { return StringUtils.join(collection, separator); } /** * 轉換Collection所有元素(通過toString())為String, 每個元素的前面加入prefix,後面加入postfix,如<div>mymessage</div>。 */ public static String convertToString(final Collection collection, final String prefix, final String postfix) { StringBuilder builder = new StringBuilder(); for (Object o : collection) { builder.append(prefix).append(o).append(postfix); } return builder.toString(); } /** * 判斷是否為空. */ public static boolean isEmpty(Collection collection) { return (collection == null || collection.isEmpty()); } /** * 取得Collection的第一個元素,如果collection為空返回null. */ public static <T> T getFirst(Collection<T> collection) { if (isEmpty(collection)) { return null; } return collection.iterator().next(); } /** * 獲取Collection的最後一個元素 ,如果collection為空返回null. */ public static <T> T getLast(Collection<T> collection) { if (isEmpty(collection)) { return null; } //當類型為List時,直接取得最後一個元素 。 if (collection instanceof List) { List<T> list = (List<T>) collection; return list.get(list.size() - 1); } //其他類型通過iterator滾動到最後一個元素. Iterator<T> iterator = collection.iterator(); while (true) { T current = iterator.next(); if (!iterator.hasNext()) { return current; } } } /** * 返回a+b的新List. */ public static <T> List<T> union(final Collection<T> a, final Collection<T> b) { List<T> result = new ArrayList<T>(a); result.addAll(b); return result; } /** * 返回a-b的新List. */ public static <T> List<T> subtract(final Collection<T> a, final Collection<T> b) { List<T> list = new ArrayList<T>(a); for (T element : b) { list.remove(element); } return list; } /** * 返回a與b的交集的新List. */ public static <T> List<T> intersection(Collection<T> a, Collection<T> b) { List<T> list = new ArrayList<T>(); for (T element : a) { if (b.contains(element)) { list.add(element); } } return list; } public static void main(String[] args) { List<String> list=new ArrayList<String>(); list.add("aa"); list.add("bb"); System.out.println(Collections3.convertToString(list, "-")); User user1 = new User(); user1.setName("大山"); User user2 = new User(); user2.setName("李四"); List<User> listUsers = new ArrayList<User>(); listUsers.add(user1); listUsers.add(user2); System.out.println(Collections3.extractToString(listUsers, "name", "-")); }}

關於集合的工具類