时间戳

作者: Xzhi | 来源:发表于2017-12-03 09:48 被阅读14次

时间戳是指格林威治时间1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)起至现在的总秒数

速度最快获取毫秒值:

System.currentTimeMillis() 这种方式速度最快

  • 时间格式化
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy年MM月dd日HH:mm");
String timeFormat = simpleDateFormat.format(System.currentTimeMillis());

判断两个时间戳,相隔多少分钟

hqtime为原时间戳
System.currentTimeMillis()获取当前时间戳
Long s = (System.currentTimeMillis() - hqtime) / (1000 * 60);
s为原时间戳和当前时间戳中间相隔的分钟数
  • 计算天数差
String fromDate = simpleFormat.format("2016-05-01 12:00");  
String toDate = simpleFormat.format("2016-06-01 12:00");  
long from = simpleFormat.parse(fromDate).getTime();  
long to = simpleFormat.parse(toDate).getTime();  
int days = (int) ((to - from)/(1000 * 60 * 60 * 24));  
  • 计算小时差
String fromDate = simpleFormat.format("2016-05-01 12:00");  
String toDate = simpleFormat.format("2016-05-01 14:00");  
long from = simpleFormat.parse(fromDate).getTime();  
long to = simpleFormat.parse(toDate).getTime();  
int hours = (int) ((to - from)/(1000 * 60 * 60));  
  • 计算分钟差
String fromDate = simpleFormat.format("2016-05-01 12:00");  
String toDate = simpleFormat.format("2016-05-01 12:50");  
long from = simpleFormat.parse(fromDate).getTime();  
long to = simpleFormat.parse(toDate).getTime();  
int minutes = (int) ((to - from)/(1000 * 60));  

相关文章

  • 时间戳

    很多网站在发布版本之前,都会在请求地址加一个时间戳进行版本更新。这样是版本更新时避免之前用户浏览器的缓存影响。请求...

  • 时间戳

    一. 关于[NSDatedate] 的问题 NSDate*date=[NSDatedate]; NSLog(@"d...

  • 时间戳

    时间戳 ios 在webView中的网页中,时间戳使用时(js)格式要用/ 而不能是-如 应该使用2018/09...

  • 时间戳

    时间戳转换成距此刻多久

  • 时间戳

    // 获取当前时间戳 + (NSString *)getCurrentTime { NSDate *sendd...

  • 时间戳

    // 获取当前时间戳(以s为单位) var timestamp = Date.parse(new Date());...

  • 时间戳

    1970年01月01日00时00分00秒(北京时间1970年01月01日08时00分00秒)>>>UNIX TIM...

  • 时间戳

    新城区的云 出来的时候是七点,现在是五点半的时候天给我嗨。然后

  • 时间戳

    获取当前时间的时间戳 获取指定时间的时间戳

  • 时间戳

    时间戳(timestamp),通常是一个字符序列,唯一地标识某一刻的时间。数字时间戳技术是数字签名技术一种变种的应...

网友评论

    本文标题:时间戳

    本文链接:https://www.haomeiwen.com/subject/ewjubxtx.html