我从json文件中获得 10位时间戳,我刚刚发现这是Unix时间,以秒为单位,而不是毫秒。
所以我去了我的DateUtils类,以秒为单位将时间戳乘以1000,以便将其转换为以毫秒为单位的时间戳。
当我尝试测试isToday()时,这行代码给了我一年50000的东西......
int otherYear = this.calendar.get(Calendar.YEAR);
这里的错误是什么?
DateUtils.java
public class DateUtils{
public class DateUtils {
private Calendar calendar;
public DateUtils(long timeSeconds){
long timeMilli = timeSeconds * 1000;
this.calendar = Calendar.getInstance();
this.calendar.setTimeInMillis(timeMilli*1000);
}
private boolean isToday(){
Calendar today = Calendar.getInstance();
today.setTimeInMillis(System.currentTimeMillis());
// Todays date
int todayYear = today.get(Calendar.YEAR);
int todayMonth = today.get(Calendar.MONTH);
int todayDay = today.get(Calendar.DAY_OF_MONTH);
// Date to compare with today
int otherYear = this.calendar.get(Calendar.YEAR);
int otherMonth = this.calendar.get(Calendar.MONTH);
int otherDay = this.calendar.get(Calendar.DAY_OF_MONTH);
if (todayYear==otherYear && todayMonth==otherMonth && todayDay==otherDay){
return true;
}
return false;
}
}
答案 0 :(得分:2)
问题在于此代码块:
long timeMilli = timeSeconds * 1000;
this.calendar = Calendar.getInstance();
this.calendar.setTimeInMillis(timeMilli*1000);
你将时间乘以1000两次;删除其中一个* 1000
,你应该好好去:)
答案 1 :(得分:0)
public class DateUtils {
private Instant inst;
public DateUtils(long timeSeconds) {
this.inst = Instant.ofEpochSecond(timeSeconds);
}
private boolean isToday() {
ZoneId zone = ZoneId.systemDefault();
// Todays date
LocalDate today = LocalDate.now(zone);
// Date to compare with today
LocalDate otherDate = inst.atZone(zone).toLocalDate();
return today.equals(otherDate);
}
}
另一个答案是正确的。我发布这个是为了告诉你Calendar
类已经过时了,并且它在java.time(现代Java日期和时间API)中的替换使用得更好,并且代码更简单,更清晰。作为一个细节,它接受自Unix时代以来的秒,所以你不需要乘以1000.你可能会认为没什么大不了的,但是一个或另一个读者可能仍需要三思而后行在理解为什么你乘以1000之前。他们现在不需要。
根据其他要求,您可能希望将实例变量设为ZonedDateTime
而不是Instant
。在这种情况下,只需将atZone
调用放入构造函数中,而不是将其放在isToday
方法中。
链接:Oracle Tutorial: Date Time解释如何使用java.time。