zoukankan      html  css  js  c++  java
  • JAVA获取当前系统时间System.currentTimeMillis()

    System.currentTimeMillis()产生一个当前的毫秒,这个毫秒其实就是自1970年1月1日0时起的毫秒数,Date()其实就是相当于Date(System.currentTimeMillis());
    因为Date类还有构造Date(long date),用来计算long秒与1970年1月1日之间的毫秒差。
    得到了这个毫秒数,我们自己也可以算起现在的年月日周时,但是这不是我们去计算的,因为有Calendar。Calendar最终出的结果就是年月日周时时区。 System.currentTimeMillis() 获得的是自1970-1-01 00:00:00.000到当前时刻的时间距离,类型为long
    String.valueOf(System.currentTimeMillis()) 这个语句可转为以下的型式:
    1 long ct = System.currentTimeMillis();
    2 String t = String.valueOf(ct);
    其实上面的String t就相当于 ct+"";
    只是转为字符串格式
    1 public String refFormatNowDate() {
    2   Date nowTime = new Date(System.currentTimeMillis());
    3   SimpleDateFormat sdFormatter = new SimpleDateFormat("yyyy-MM-dd");
    4   String retStrFormatNowDate = sdFormatter.format(nowTime);
    5 
    6   return retStrFormatNowDate;
    7 }
  • 相关阅读:
    linux挂载windows共享文件夹
    Cython
    python并行编程
    数据库学习----MySQL 存储引擎
    数据库学习----MySQL 日志
    数据库学习----从文件l数据到数据库
    Golang 学习 ---- 编译打包
    数字转换成千字符
    el-select选择框宽度与输入框相同
    git常用命令总结
  • 原文地址:https://www.cnblogs.com/jun1019/p/4062904.html
Copyright © 2011-2022 走看看