/** * @author xichao.dong * @email 406592176@qq.com * @date 2014-8-15 上午8:50:38 * @company (开发公司) 珠海市冰川软件有限公司 * @copyright (版权) 本文件归属珠海市冰川软件有限公司所有 * @version V1.0 * @modify (修改) : 2014-8-15 上午8:50:38 xichao.dong * @Review (审核人) :xichao.dong */ package com.glacier.basic.test; import java.util.Collections; import java.util.List; import java.util.Random; /** * @ClassName: RandomData * @Description: TODO(随机测试数据生成工具类) * @author xichao.dong * @email 406592176@qq.com * @date 2014-8-15 上午11:10:39 */ public class RandomData { private static Random random = new Random(); /** * 返回随机ID. */ public static long randomId() { return random.nextLong(); } /** * 返回随机名称, prefix字符串+5位随机数字. */ public static String randomName(String prefix) { return prefix + random.nextInt(10000); } /** * 从输入list中随机返回一个对象. */ public static <T> T randomOne(List<T> list) { Collections.shuffle(list); return list.get(0); } /** * 从输入list中随机返回n个对象. */ public static <T> List<T> randomSome(List<T> list, int n) { Collections.shuffle(list); return list.subList(0, n); } /** * 从输入list中随机返回随机个对象. */ public static <T> List<T> randomSome(List<T> list) { int size = random.nextInt(list.size()); if (size == 0) { size = 1; } return randomSome(list, size); } }