Android DownloadManager双重请求&请求中止

时间:2013-01-22 22:40:16

标签: android android-download-manager

我正在尝试让下载管理器请求正常工作,我收到一个奇怪的错误。这是代码:

package com.vsnetworks.vswebkads;

import java.io.File;
import android.net.Uri;
import android.os.Bundle;
import android.annotation.TargetApi;
import android.app.Activity;
import android.app.DownloadManager;
import android.app.DownloadManager.Request;
import android.content.Context;
import android.util.Log;

@TargetApi(9)
public class MainActivity extends Activity {

static final String DL_STR = "downloads";

@Override                                                                            
public void onCreate(Bundle savedInstanceState) {

    Log.v("VERS TEST", "1.1");
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    File externalDir = getExternalFilesDir(null);
    externalDir.mkdirs();

    File dlDir = new File(externalDir, MainActivity.DL_STR);
    if (!dlDir.exists())
        dlDir.mkdirs();

    DownloadManager dlManager = (DownloadManager) getApplicationContext().getSystemService(Context.DOWNLOAD_SERVICE);
    Uri uri = Uri.parse("https://www.google.com/images/srpr/logo3w.png");
    //uri = Uri.parse("http://download.thinkbroadband.com/20MB.zip");
    DownloadManager.Request request = new Request(uri);
    request.setAllowedNetworkTypes(Request.NETWORK_WIFI);
    request.setDestinationInExternalFilesDir(getApplicationContext(), null, "downloads/test.png");
    request.setTitle("test");
    dlManager.enqueue(request);
}
}

有趣的是,如果我取消注释第二个uri =行,则下载效果很好,文件最终会出现在目录中。这让我觉得我正在尝试通过SSL下载导致问题。但是,根据这两个线程,下载管理器支持ssl(在第一个注释中):

Android DownloadManager and SSL (https)

android2.3 DownloadManager

我也似乎没有任何错误告诉我下载管理器只能在第二个链接中使用http。这是我看到的错误:

01-22 17:23:42.385: I/DownloadManager(1061): Initiating request for download 4068
01-22 17:23:42.905: I/DownloadManager(1061): Initiating request for download 4068
01-22 17:23:42.905: W/DownloadManager(1061): Aborting request for download 4068: Trying to resume a download that can't be resumed
01-22 17:23:42.905: D/DownloadManager(1061): setupDestinationFile() unable to resume download, deleting /storage/sdcard0/Android/data/com.vsnetworks.vswebkads/files/downloads/test.png
01-22 17:23:42.915: D/DownloadManager(1061): cleanupDestination() deleting /storage/sdcard0/Android/data/com.vsnetworks.vswebkads/files/downloads/test.png

我今天刚刚在我的平板电脑上更新了android,它位于4.1.1版本上,所以我认为这不是版本问题。

那么,我可以使用https执行下载管理器请求吗?如果是,这是正确的方法吗?

2 个答案:

答案 0 :(得分:0)

在这种情况下,错误似乎与设备有关。当我们将测试切换到nexus 10时,代码工作,并且没有出现此错误。

答案 1 :(得分:-1)

检查您的服务器日志,有时DownloadManager会启动部分下载请求(导致误导性双日志输出“启动下载请求”。您的服务器必须正确处理此请求,否则您会收到此错误。请参阅我的回答这个问题: Can't resume download