我有一个简单的问题,我有以下函数,并且有一个名为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;
}
答案 0 :(得分:7)
毫秒是1/1000秒。所以4小时将是4 * 60 * 60 * 1000 = 14,400,000
对于缓存失效,这可能没问题。也就是说,日期数学通常很危险。当处理比毫秒更大的时间单位时,在夏令时转换,闰秒以及日历所需要处理的所有其他内容中,很容易被绊倒。在某些情况下,罕见的不精确是可以接受的,而在其他情况下则不然。做日期数学时要小心。
要在更长的时间单位(例如+1天)内确定人类消耗品时间,请使用Calendar.roll()。
答案 1 :(得分:6)
答案 2 :(得分:4)
// 4 hours * 60 (min/hour) * 60 (sec/min) * 1000 (msec/sec)
getCache(name, c, 4 * 3600 * 1000);
答案 3 :(得分:1)
4 * 1000 * 3600
一秒钟内有1000毫秒,一小时内有3600秒。