Java生成随机日期

http://blog.csdn.net/opnmzxcvb/article/details/3970683
public class DateRandomTest {  
	  
	    // 返回2007-01-01到2007-03-01的一个随机日期  
	    public static void main(String[] args) {  
	        Date randomDate = randomDate("2007-01-01", "2007-03-01");  
	        System.out.println(randomDate.toString());  
	    }  
	  
	    /** 
	     * 获取随机日期 
	     *  
	     * @param beginDate 
	     *            起始日期,格式为:yyyy-MM-dd 
	     * @param endDate 
	     *            结束日期,格式为:yyyy-MM-dd 
	     * @return 
	     */  
	  
	    private static Date randomDate(String beginDate, String endDate) {  
	        try {  
	            SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");  
	            Date start = format.parse(beginDate);// 构造开始日期  
	            Date end = format.parse(endDate);// 构造结束日期  
	            // getTime()表示返回自 1970 年 1 月 1 日 00:00:00 GMT 以来此 Date 对象表示的毫秒数。  
	            if (start.getTime() >= end.getTime()) {  
	                return null;  
	            }  
	            long date = random(start.getTime(), end.getTime());  
	  
	            return new Date(date);  
	        } catch (Exception e) {  
	            e.printStackTrace();  
	        }  
	        return null;  
	    }  
	  
	    private static long random(long begin, long end) {  
	        long rtn = begin + (long) (Math.random() * (end - begin));  
	        // 如果返回的是开始时间和结束时间,则递归调用本函数查找随机值  
	        if (rtn == begin || rtn == end) {  
	            return random(begin, end);  
	        }  
	        return rtn;  
	    }  
	  
	} 


public static Date getRandomDate() {
		Random rand = new Random();
		SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd ");
		Calendar cal = Calendar.getInstance();
		cal.set(2000, 0, 1);
		long start = cal.getTimeInMillis();
		cal.set(2012, 10, 1);
		long end = cal.getTimeInMillis();
		Date d = new Date(start + (long) (rand.nextDouble() * (end - start)));
		System.out.println(format.format(d));
		return d;
	}



Date d = new Date(start + (long) (rand.nextDouble() * (end - start)));
这个是从网上见到的    这句有问题  但还没时间去改

猜你喜欢

转载自panyongzheng.iteye.com/blog/1693779