zoukankan      html  css  js  c++  java
  • Java中获取某个指定时间范围的随机时间

    package com.showy.vo.rest;
    
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    public class DateUtil {
        /**
         * 生成随机时间
         *
         * @param beginDate
         * @param endDate
         * @return
         */
        public 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;
        }
    
        public 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 String addTime(){
                                         /** 开始时间     结束时间   */
            Date randomDate = randomDate("2020-08-01", "2021-04-07");
            SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
            String result = format.format(randomDate);
            return result;
        }
    
    }
    

      

  • 相关阅读:
    P2602 [ZJOI2010]数字计数
    P2657 [SCOI2009] windy 数
    Gym
    B
    Problem E The League of Sequence Designers
    C. Vladik and fractions
    hdu6069
    hdu 6096
    30道经典面试题,靠它我在一线拿到了20k的前端开发工程师岗位
    【面经分享】互联网寒冬,7面阿里,终获Offer!
  • 原文地址:https://www.cnblogs.com/wsycoo/p/14653076.html
Copyright © 2011-2022 走看看