如何将时间增加 1 小时



我有两个时间值。 一个用于上一个登录时间,一个用于当前登录时间。我必须将以前的登录时间增加一个小时。我使用了日期格式hh:mm:ss。这是我的代码片段。

Date previous_time, current_time;
  if(previous_time.before(current_time)){
  Log.i("Time Comparision"," true");
 }

因此,我必须在previous_time中添加一个小时并执行 if 条件,而不是上面提到的 if 条件。如何实现这一点?

   Calendar calendar = Calendar.getInstance();
   calendar.setTime(previous_time);
   calendar.add(Calendar.HOUR, 1);
   previous_time = calendar.getTime();
   // do your comparison
previous_time.setTime(previous_time.getTime() + 60 * 60 * 1000);

Date session_expiry = new Date(previous_time.getTime() + 60 * 60 * 1000);

http://download.oracle.com/javase/6/docs/api/java/util/Date.html#getTime%28%29

请尝试此代码。

    SimpleDateFormat sdf = new SimpleDateFormat("h:mm a");
    Date date = Utils.getBookingDate(mBooking.ToTime);
    Calendar calendarAdd = Calendar.getInstance();
    calendarAdd.setTime(date);
    calendarAdd.add(Calendar.HOUR, 1);
    toTime = sdf.format(calendarAdd.getTime());
    tv_Totime.setText(toTime);

当当前时间字符串 formate 在添加 1 小时内时

相关内容

  • 没有找到相关文章

最新更新