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;
        }
    
    }
    

      

  • 相关阅读:
    API
    Object constructor
    function()
    For语句的衍生对象
    编程语言发展史
    将Paul替换成Ringo
    Document.write和 getElementById(ID)
    姓名,电话号码,邮箱的正则检测
    JavaScript-BOM与DOM
    管理心得
  • 原文地址:https://www.cnblogs.com/wsycoo/p/14653076.html
Copyright © 2011-2022 走看看