zoukankan      html  css  js  c++  java
  • 获取一天中的起始时间与结束时间

    DateFormat format = new SimpleDateFormat("yyyy-MM-dd");
    DateFormat format2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    Date d = new Date();
    String str = format.format(d);
    System.out.println(d);
    Date d2 = format.parse(str);

    System.out.println(format2.format(d2));

    int dayMis = 1000 * 60 * 60 * 24;// 一天的毫秒-1
    // 返回自 1970 年 1 月 1 日 00:00:00 GMT 以来此 Date 对象表示的毫秒数。
    long curMillisecond = d2.getTime();// 当天的毫秒
    long resultMis = curMillisecond + (dayMis - 1); // 当天最后一秒
    // 得到我须要的时间 当天最后一秒
    Date resultDate = new Date(resultMis);
    System.out.println(format2.format(resultDate));

  • 相关阅读:
    双循环解决添加列表问题
    贪心算法
    隔板法发红包
    python小兵之时间模块
    开发规范
    python 小兵(12)模块1
    Linux系统
    刷题
    Socket
    栈和队列
  • 原文地址:https://www.cnblogs.com/JCL1101/p/8073623.html
Copyright © 2011-2022 走看看