通过Math.random函数生成所需的字符所有序列,通过判断当前字符是否属于大小写.数字,符合者加入数组内,直到数组存储N位为止,最后把当前数组转为字符串返回调用处. /** * 随机生成由数字.字母组成的N位验证码 * * @return 返回一个字符串 */ public static String getCode(int n) { char arr[] = new char[n]; int i = 0; while (i < n) { char ch = (char) (int) (Ma
public class UIDGenerator { private static Date date = new Date(); private static StringBuilder buf = new StringBuilder(); private static int seq = 0; private static final int ROTATION = 99999; public static synchronized long next(){ if (seq > ROTATI
摘自 http://blog.csdn.net/xiayaxin/article/details/5355851 import java.util.Random; public String getCharAndNumr(int length) { String val = ""; Random random = new Random(); for(int i = 0; i < length; i++) { String charOrNum = random.nextInt(2)
唯一数的生成很简单,基本上以时间为基础进行生成.在JDK里面已经有java.util.UUID类可以生成唯一的随机数.如果希望生成的唯一数为特定的格式,那么就需要自己来生成唯一数了.生成唯一数时有两个因素是必须在考虑的: 必须保证唯一,这个一般以时间为基础进行变化. 高效,当然越高效越好. 有时我们希望在生成的唯一数中包含特定的内容,如把当前时间,如20110609132641,作为前缀等.以下片段供参考: import java.util.Date; public class Generate