从android webview中的blob获取数据

问题描述

我正在创建一个应用程序,该应用程序使用 web view 加载网站并允许下载 IMG/PDF/GIF 等数据。问题是下载链接不是普通链接,它是blob:

我知道 blob: URL 不是指服务器上存在的数据,而是指您的浏览器当前在内存中的数据。

class DownloadBlobFileJSInterface {

    private Context mContext;
    private DownloadGifSuccessListener mDownloadGifSuccessListener;

    public DownloadBlobFileJSInterface(Context context) {
        this.mContext = context;
    }

    public static String getBase64StringFromBlobUrl(String blobUrl) {
        if (blobUrl.startsWith("blob")) {
            return "javascript: var xhr = new XMLHttpRequest();" +
                    "xhr.open('GET','" + blobUrl + "',true);" +
                    "xhr.setRequestHeader('Content-type','image/gif');" +
                    "xhr.responseType = 'blob';" +
                    "xhr.onload = function(e) {" +
                    "    if (this.status == 200) {" +
                    "        var blobFile = this.response;" +
                    "        var reader = new FileReader();" +
                    "        reader.readAsDataURL(blobFile);" +
                    "        reader.onloadend = function() {" +
                    "            base64data = reader.result;" +
                    "            Android.getBase64FromBlobData(base64data);" +
                    "        }" +
                    "    }" +
                    "};" +
                    "xhr.send();";
        }
        return "javascript: console.log('It is not a Blob URL');";
    }

    public void setDownloadGifSuccessListener(DownloadGifSuccessListener listener) {
        mDownloadGifSuccessListener = listener;
    }

    @JavascriptInterface
    public void getBase64FromBlobData(String base64Data) {
        convertToGifAndProcess(base64Data);
    }

    private void convertToGifAndProcess(String base64) {

        Contextwrapper wrapper = new Contextwrapper(mContext);
        String fullPath =wrapper.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS).toString();

        File gifFile = new File(fullPath+ "/File_" + System.currentTimeMillis() + "_.gif");


        saveGifToPath(base64,gifFile);
        Toast.makeText(mContext,"Downloaded",Toast.LENGTH_SHORT).show();
        if (mDownloadGifSuccessListener != null) {
            mDownloadGifSuccessListener.downloadGifSuccess(gifFile.getAbsolutePath());
        }
    }

    private void saveGifToPath(String base64,File gifFilePath) {
        try {
            byte[] fileBytes = Base64.decode(base64.replaceFirst(
                    "data:image/gif;base64,",""),0);
            FileOutputStream os = new FileOutputStream(gifFilePath,false);
            os.write(fileBytes);
            os.flush();
            os.close();
        } catch (Exception e) {
            e.printstacktrace();
        }
    }

    public interface DownloadGifSuccessListener {
        void downloadGifSuccess(String absolutePath);
    }
}

我想下载设备存储中的文件

有没有办法从 blob: URL 获取数据?

是否可以将该数据发送到 chrome 进行下载。

我知道 StackOverflow 上有很多问题,例如 thisthis,我几乎尝试了所有问题,但都没有发现任何一个有效。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)