Java 中怎么算两个时间的差值(当前的时间—减去—一个时间(年月日时分秒))=数值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 中怎么算两个时间的差值(当前的时间—减去—一个时间(年月日时分秒))=数值相关的知识,希望对你有一定的参考价值。
怎么算两个时间的差值(当前的时间—减去—一个时间(年月日时分秒))=数值
long now= System.currentTimeMillis();
String time = "2010-10-27 10:20:58"
计算这两个的差值。差值为int型。
long now = System.currentTimeMillis();
String time = "2010-10-27 09:05:58";
long s = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").parse(time).getTime();//根据字符串time得到毫秒数。
int k = 0;
if((now-s)<= Integer.MAX_VALUE)//因为要把long转成int型有可以造成溢出..所以要判断一下
k = (int)(now - s);
System.out.print(k);
catch (ParseException e)
e.printStackTrace();
参考技术A String time = "2010-10-27 10:20:58";
Date date = Date.valueOf(time);//将字符串转化成日期
long dat = date.getTime();//得到毫秒数
long result = dat - now;//得到差值
你要愿意,就把结果强转成int就行了。
iOS中,获取到当前的时间,减去1970年的时间差,换算成秒怎么做
参考技术A 01 //获取当前时间02 NSDate *now = [NSDate date];
03 NSLog(@”now date is: %@”, now);
04
05 NSCalendar *calendar = [NSCalendar currentCalendar];
06 NSUInteger unitFlags = NSYearCalendarUnit | NSMonthCalendarUnit | NSDayCalendarUnit | NSHourCalendarUnit | NSMinuteCalendarUnit | NSSecondCalendarUnit;
07 NSDateComponents *dateComponent = [calendar components:unitFlags fromDate:now];
08
09 int year = [dateComponent year];
10 int month = [dateComponent month];
11 int day = [dateComponent day];
12 int hour = [dateComponent hour];
13 int minute = [dateComponent minute];
14 int second = [dateComponent second];
以上是关于Java 中怎么算两个时间的差值(当前的时间—减去—一个时间(年月日时分秒))=数值的主要内容,如果未能解决你的问题,请参考以下文章