如何比较android中的两个时间戳?

时间:2012-08-28 09:30:34

标签: android timestamp

我想比较两个时间戳,如果差别是( - + 5minuts),那么我想显示警告对话框。

即。如果目前在我们的手表下午4点,第二次是下午4点45分或3.55点,那么警报将显示其他情况。

任何人都可以建议我如何得到解决方案。??

我在搜索后发现了获取timeStamp的功能以及如何比较两个时间戳,但对于这种类型的条件是否有任何方法或功能?

感谢。

我的代码是: -

date= new Date();
currentTime = date.getTime();
if(currentTime !=0 && previousTime !=0){
   String result = (String) DateUtils.getRelativeTimeSpanString(currentTime, previousTime, 0);
 }

我将当前时间保存到以前的时间lilke: -

if(currentTime != previousTime){
    previousTime = currentTime;
}

5 个答案:

答案 0 :(得分:8)

您可以采取两种方法,具体取决于您是只想测量经过的时间,还是想要设置未来的时间来进行比较。

第一个类似于Sourabh Saldi的回答,记录了

的结果
long prevEventTime = System.currentTimeMillis();

然后将它与System.currentTimeMillis()进行比较,直到差值超过300000

正如您所提到的,自1970年1月1日起,服务器的时间戳以毫秒为单位。这意味着它与System.currentTimeMillis()直接相当。因此,请使用:

long serverTimeStamp=//whatever your server timestamp is, however you are getting it.
//You may have to use Long.parseLong(serverTimestampString) to convert it from a string

//3000(millliseconds in a second)*60(seconds in a minute)*5(number of minutes)=300000
if (Math.abs(serverTimeStamp-System.currentTimeMillis())>300000){ 
    //server timestamp is within 5 minutes of current system time
} else {
    //server is not within 5 minutes of current system time
}

另一种方法看起来更接近你已经在做的事情 - 使用Date类来存储当前和比较的时间。要使用它们,您需要使用GregorianCalendar类来处理它们。调用

calendar=new GregorianCalendar();

将创建一个新日历,并自动将其日期设置为当前系统时间。您还可以使用GregorianCalendar类中提供的所有函数来使用表单中的某些内容向前或向后滚动时间

calendar.add(GregorianCalendar.MINUTE, 5);

或使用

将其设置为Date对象的时间
calendar.setTime(date);

在你的情况下,根据你想要多大的灵活性,GregorianCalendar类和Date类都有after()方法,所以你可能需要类似以下内容:

创建某个地方:

Date currentDate=newDate();

然后设置闹钟点:

calendar=new GregorianCalendar(); //this initialises to the current system time
calendar.setTimeInMillis(<server timestamp>); //change to whatever the long timestamp value from your server is
calendar.add(GregorianCalendar.MINUTE, 5); //set a time 5 minutes after the timestamp
Date beforeThisDate = calendar.getTime();
calendar.add(GregorianCalendar.MINUTE, -10); //set a time 5 minutes before the timestamp
Date afterThisDate = calendar.getTime();

然后使用

检查当前时间是否超过设定的警报点
currentDate.setTime(System.currentTimeMillis());
if ((currentDate.before(beforeThisDate))&&(currentDate.after(afterThisDate))){
    //do stuff, current time is within the two dates (5 mins either side of the server timestamp)
} else {
    //current time is not within the two dates
}

这种方法似乎有点冗长,但你会发现它非常强大和灵活,可以很容易地扩展到将来设置警报点,或者使用GregorianCalendar方法轻松设置日期时间,未来几天或几周。

答案 1 :(得分:5)

如何:

private static final long FIVE_MINUTES = 1000 * 60 * 5; //5 minutes in milliseconds

long currentTime = new Date().getTime();
long previousTime = mPreviousTime;
long differ = (currentTime - previousTime);

if (differ < FIVE_MINUTES && differ > -FIVE_MINUTES ){
  // under +/-5 minutes, do the work
}else{
  // over 5 minutes
}

答案 2 :(得分:1)

 long etime = 0;
final long time1 = uptimeMillis();
/* do something */
final long time2 = uptimeMillis();
if (time2 < time1) {
    etime = Long.MAX_VALUE - time1 + time2;
} else {
    etime = time2 - time1;
}

然后检查这个etime并按要求进行!! 1

答案 3 :(得分:0)

Joda时间将帮助您完成此任务。

import org.joda.time.Interval;

http://joda-time.sourceforge.net/

答案 4 :(得分:0)

使用以下方法以纪元格式更改日期

public Long getChnagedDate(Activity act,String date) throws ParseException
{
      long epoch = new java.text.SimpleDateFormat ("MM/dd/yyyy HH:mm:ss aa").parse(date).getTime();
      return epoch/1000;
}

并检查http://www.epochconverter.com之后的差异。 希望它能帮到你。