cordova:从url下载到android下载文件夹

时间:2016-12-13 19:50:14

标签: android cordova phonegap-plugins

在我开始之前,我尝试了以下堆栈溢出的答案。

Download file to downloads folder ios/android using phonegap

FileTransfer Cordova download path

Download a file to Downloads folder of device using Cordova FileTransfer

http://www.phonegaptutorial.com/downloading-an-image-from-the-internet-with-phonegap/

但是没有运气。

我正在尝试从互联网上下载文件。 我的目标是在Android手机上的下载文件夹中下载文件。

我尝试了以上所有答案,并且我还使用了cordova网站上的cordova示例。

https://cordova.apache.org/docs/en/2.0.0/cordova/file/filetransfer/filetransfer.html

function downloadCL(){

var url = "http://www.phonegaptutorial.com/wp-content/uploads/examples/phonegap-logo.png";

// we need to access LocalFileSystem
window.requestFileSystem(window.LocalFileSystem.PERSISTENT, 0, function(fs)
{
     // create the download directory is doesn't exist
    fs.root.getDirectory('downloads', { create: true });

    // we will save file in .. downloads/phonegap-logo.png
    var filePath = fs.root.fullPath + '/downloads/' + url.split('/').pop();
    var fileTransfer = new window.FileTransfer();
    var uri = encodeURI(decodeURIComponent(url));

    fileTransfer.download(uri, filePath, function(entry)
    {
        alert("Successfully downloaded file, full path is " + entry.fullPath);
    },
  function(error)
    {
        console.log("Some error " + error.code + " for " + url +);
    }, 
    false);
}
                          };
};

任何建议如何实现这一目标。

1 个答案:

答案 0 :(得分:1)

叉,
你必须选择下载文件网址,
本地下载文件位于此处 -
文件:///存储/模拟/ 0 /下载 这个链接可以帮助你 -

Cordova - Download a file in download folder

添加了要下载的文件传输插件,例如 -

https://github.com/cfjedimaster/Cordova-Examples/tree/master/asyncdownload

根据要求选择任何