2

我有一个简单的问题,我有以下函数,并且有一个参数叫做cacheTime,我怎样才能将它设置为 4 小时,我应该将它设置为4 * 3600000吗?

public static File getCache(String name, Context c, int cacheTime) 
{
    if (cacheTime <= 0)
        return null;
    File cache = new File(c.getCacheDir(), name);
    long now = System.currentTimeMillis();
    if (cache.exists() && (now - cache.lastModified() < cacheTime))
        return cache;
    return null;
}
4

4 回答 4

7

毫秒是 1/1000 秒。所以 4 小时将是 4 * 60 * 60 * 1000 = 14,400,000

对于缓存失效,这可能很好。也就是说,日期数学通常很危险。当处理比毫秒更大的时间单位时,在夏令时转换、闰秒和日历本应处理的所有其他事情时,很容易被绊倒。在某些情况下,罕见的不精确是可以接受的,而在其他情况下则不是。做日期数学时要小心。

要以更大的时间单位(例如 +1 天)确定人类消耗时间,请使用 Calendar.roll()。

于 2013-02-15T21:50:53.493 回答
6

学习使用方便的TimeUnit枚举,以便您可以执行以下操作:

TimeUnit.Hours.toMillis(4)

并且不要依赖整个代码中的餐巾数学和魔术数字。

于 2013-02-15T21:51:51.867 回答
4
// 4 hours * 60 (min/hour) * 60 (sec/min) * 1000 (msec/sec)
getCache(name, c, 4 * 3600 * 1000);
于 2013-02-15T21:48:12.360 回答
1
4 * 1000 * 3600

一秒有 1000 毫秒,一小时有 3600 秒。

于 2013-02-15T21:48:02.373 回答