簡體   English   中英

使用下載管理器無法在預棒棒糖設備中下載pdf

[英]pdf not getting downloaded in pre-lollipop devices using download manager

我正在嘗試使用DownloadManager下載pdf。

我在鏈接中傳遞參數,並從服務器pdf文件中生成並下載到設備中。 所以我的下載鏈接就是這樣的

http://example.com/gen.php?data={......}

我的代碼:

final Request request = new Request(Uri.parse(fromUrl));
request.setMimeType("application/pdf");
request.setNotificationVisibility(Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationInExternalPublicDir(path, "ELALA_MANIFEST_" + System.currentTimeMillis() + ".pdf");

final DownloadManager dm = (DownloadManager) context
        .getSystemService(Context.DOWNLOAD_SERVICE);
try {
    try {
        dm.enqueue(request);
    } catch (SecurityException e) {
        request.setNotificationVisibility(Request.VISIBILITY_VISIBLE);
        Log.e("Error", e.toString());
        dm.enqueue(request);
    }

}
// if the download manager app has been disabled on the device
catch (IllegalArgumentException e) {
    openAppSettings(context,
            AdvancedWebView.PACKAGE_NAME_DOWNLOAD_MANAGER);
}

在api級別21(lollipop)及更高版本的設備中可以正常工作 但在較低版本的pdf中無法下載。 通知彈出,

 <untitled> download unsuccessful 

我知道這與setMimeType ,但不知道是什么。

任何幫助將不勝感激。

當您<untitled> download unsuccessful ,通常表示您的網址不正確,為空或為null。 因此,請首先確保url正確。

看一下我的小示例,它帶有在4.4(pre-lolipop)中運行的DownloadManager。

import android.app.DownloadManager;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;

import java.io.File;

public class MainActivity extends AppCompatActivity {

    private DownloadManager dm;
    private String url;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
        url = "https://collegereadiness.collegeboard.org/pdf/psat-nmsqt-practice-test-1.pdf";

        findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {

                if (TextUtils.isEmpty(url)) {
                    throw new IllegalArgumentException("url cannot be empty or null");
                }

                DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
                request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);

                if (isExternalStorageWritable()) {
                    String uriString = v.getContext().getExternalFilesDir(null) + "";
                    File file = new File(uriString, Uri.parse(url).getLastPathSegment());
                    Uri destinationUri = Uri.fromFile(file);
                    request.setDestinationUri(destinationUri);
                    dm.enqueue(request);
                }
            }
        });

        registerReceiver(receiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
    }

    private BroadcastReceiver receiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) {
                Log.d(TAG, "onReceive() returned: " + action);
                // TODO: 2016-10-12  
            } else if (DownloadManager.ACTION_NOTIFICATION_CLICKED.equals(action)) {
                Log.d(TAG, "onReceive() returned: " + action);
                // TODO: 2016-10-12  
            }
        }
    };

    private static final String TAG = "MainActivity";

    //...

    public boolean isExternalStorageWritable() {
        String state = Environment.getExternalStorageState();
        return Environment.MEDIA_MOUNTED.equals(state);
    }

    public boolean isExternalStorageReadable() {
        String state = Environment.getExternalStorageState();
        return Environment.MEDIA_MOUNTED.equals(state) ||
                Environment.MEDIA_MOUNTED_READ_ONLY.equals(state);
    }
}

它使用權限:

 <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

處理所有條件很重要。 也可以嘗試使用應用程序目錄,而不是在您的SD卡上亂七八糟。 本示例將下載的文件保存在/sdcard/Android/data/{your app package name}/files/ 以前,我檢查是否已安裝sdcard,以及是否可以在目錄上寫入。

樣品:

在此處輸入圖片說明


好的,這是我的示例,如果標頭具有“ Content-Disposition`字段,則解析文件名。您說它在YOur服務器上,因此您可以做到:)

import android.app.DownloadManager;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.os.Bundle;
import android.os.Environment;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;

import java.io.File;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;

public class MainActivity extends AppCompatActivity {

    private DownloadManager dm;
    private String url;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
        url = "http://dl1.shatelland.com/files/07610a8d-a73f-45bb-8868-6fd33299bda7/6e33639f-0ce0-43ef-86e4-43492db1be86";

        findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(final View v) {

                new Thread(new Runnable() {
                    @Override
                    public void run() {
                        downloadFileInTask(v.getContext(), url);
                    }
                }).start();
            }
        });

        registerReceiver(receiver, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));
    }

    private void downloadFileInTask(Context v, String url) {
        if (TextUtils.isEmpty(this.url)) {
            throw new IllegalArgumentException("url cannot be empty or null");
        }

        /*when redirecting from hashed url and found headerField "Content-Disposition"*/
        String resolvedFile = resolveFile(url, "unknown_file");

        DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
        request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);

        if (isExternalStorageWritable()) {
            File file = new File(v.getExternalFilesDir(null), resolvedFile);
            Uri destinationUri = Uri.fromFile(file);
            request.setDestinationUri(destinationUri);
            dm.enqueue(request);
        }
    }

    private String resolveFile(String url, String defaultFileName) {
        String filename = defaultFileName;

        HttpURLConnection con = null;
        try {
            con = (HttpURLConnection) new URL(url).openConnection();
            con.setInstanceFollowRedirects(true);
            con.connect();

            String contentDisposition = con.getHeaderField("Content-Disposition");
            if (!TextUtils.isEmpty(contentDisposition)) {
                String[] splittedCD = contentDisposition.split(";");
                for (int i = 0; i < splittedCD.length; i++) {
                    if (splittedCD[i].trim().startsWith("filename=")) {
                        filename = splittedCD[i].replaceFirst("filename=", "").trim();
                        break;
                    }
                }
            }

            con.disconnect();
        } catch (IOException e) {
            e.printStackTrace();
        }

        return filename;
    }

    private BroadcastReceiver receiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) {
                Log.d(TAG, "onReceive() returned: " + action);
                // TODO: 2016-10-12  
            } else if (DownloadManager.ACTION_NOTIFICATION_CLICKED.equals(action)) {
                Log.d(TAG, "onReceive() returned: " + action);
                // TODO: 2016-10-12  
            }
        }
    };

    private static final String TAG = "MainActivity";

    //...

    public boolean isExternalStorageWritable() {
        String state = Environment.getExternalStorageState();
        return Environment.MEDIA_MOUNTED.equals(state);
    }

    public boolean isExternalStorageReadable() {
        String state = Environment.getExternalStorageState();
        return Environment.MEDIA_MOUNTED.equals(state) ||
                Environment.MEDIA_MOUNTED_READ_ONLY.equals(state);
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM