我有一个简单的问题,我有以下函数,并且有一个参数叫做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;
}