簡単な質問があります。次の関数があり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;
}