我希望重复请求从本地缓存提供URL,而不是从服务器重新下载。我使用的是DownloadManager,希望它可以替代HttpURLConnection
(saw it recommended),但默认情况下它没有响应缓存。这是我的测试代码:
final Context context = getContext();
final DownloadManager manager =
Android.ensureSystemService( DownloadManager.class, context );
final DownloadManager.Request req =
new DownloadManager.Request( Uri.parse( BIG_FILE_URL ));
req.setNotificationVisibility( VISIBILITY_HIDDEN ); // hiding from user
context.registerReceiver( new BroadcastReceiver()
{
public void onReceive( final Context context, final Intent intent )
{
context.unregisterReceiver( this ); // one shot for this test
final long id = intent.getLongExtra( EXTRA_DOWNLOAD_ID, -1L );
System.err.println( " --- downloaded id=" + id );
System.err.println( " --- uri=" +
manager.getUriForDownloadedFile(id) );
}
}, new IntentFilter( ACTION_DOWNLOAD_COMPLETE ));
manager.enqueue( req );
运行上述测试两次,我在远程服务器上看到两个GET
请求(每个请求都有一个200
响应)以及本地Android日志中的以下内容:
20:14:27.574 D/DownloadManager( 1591): [1] Starting
20:14:28.256 D/DownloadManager( 1591): [1] Finished with status SUCCESS
20:14:28.263 W/System.err( 2203): --- downloaded id=1
20:14:28.269 W/System.err( 2203): --- uri=content://downloads/my_downloads/1
20:15:13.904 D/DownloadManager( 1591): [2] Starting
20:15:14.517 D/DownloadManager( 1591): [2] Finished with status SUCCESS
20:15:14.537 W/System.err( 2203): --- downloaded id=2
20:15:14.541 W/System.err( 2203): --- uri=content://downloads/my_downloads/2
因此它下载BIG_FILE
两次并将其存储在两个文件中。相反,我想要响应缓存。 DownloadManager
可以做响应缓存吗?
PS。它看起来像'不'。所以我更正了将我带到这里的建议(see rev 22)。
PPS。可以肯定的是,我测试了标准HttpResponseCache。它对DownloadManager
没有影响,但默认情况下会为每个HttpURLConnection
启用缓存。
答案 0 :(得分:0)
默认情况下,将ServiceService下载到临时目标。没有内置缓存请求的功能,但您可以使用DownloadManager.query()方法查询之前请求的下载列表。