List of usage examples for com.squareup.okhttp Cache evictAll
public void evictAll() throws IOException
From source file:com.anony.okhttp.sample.RewriteResponseCacheControl.java
License:Apache License
public RewriteResponseCacheControl(File cacheDirectory) throws Exception { Cache cache = new Cache(cacheDirectory, 1024 * 1024); cache.evictAll(); client = new OkHttpClient(); client.setCache(cache);/*ww w.j av a 2s .c o m*/ }