zoukankan      html  css  js  c++  java
  • java日期工具类

    public class UtilDate {
        
        /** 年月日时分秒(无下划线) yyyyMMddHHmmss */
        public static final String dtLong                  = "yyyyMMddHHmmss";
        
        /** 完整时间 yyyy-MM-dd HH:mm:ss */
        public static final String simple                  = "yyyy-MM-dd HH:mm:ss";
        
        /** 年月日(无下划线) yyyyMMdd */
        public static final String dtShort                 = "yyyyMMdd";
        
        
        /**
         * 返回系统当前时间(精确到毫秒),作为一个唯一的订单编号
         * @return
         *      以yyyyMMddHHmmss为格式的当前系统时间
         */
        public  static String getOrderNum(){
            Date date=new Date();
            DateFormat df=new SimpleDateFormat(dtLong);
            return df.format(date);
        }
        
        /**
         * 获取系统当前日期(精确到毫秒),格式:yyyy-MM-dd HH:mm:ss
         * @return
         */
        public  static String getDateFormatter(){
            Date date=new Date();
            DateFormat df=new SimpleDateFormat(simple);
            return df.format(date);
        }
        
        /**
         * 获取系统当期年月日(精确到天),格式:yyyyMMdd
         * @return
         */
        public static String getDate(){
            Date date=new Date();
            DateFormat df=new SimpleDateFormat(dtShort);
            return df.format(date);
        }
        
        /**
         * 产生随机的三位数
         * @return
         */
        public static String getThree(){
            Random rad=new Random();
            return rad.nextInt(1000)+"";
        }
        
    }
  • 相关阅读:
    (14)python函数与变量
    ①③python中的字符串与字符编码
    ①②python文件操作及文件增删改查
    rsa公钥私钥
    MySQL创建数据库和表
    Rsync + Innotify 部署实例
    LNMPT部署示例
    Nginx 调优
    Nginx 二进制方式安装
    wget & curl 命令
  • 原文地址:https://www.cnblogs.com/hjsblogs/p/5949159.html
Copyright © 2011-2022 走看看