0

サーバーから画像をダウンロードして SD カードに保存し、blackberry 10 に表示しようとしています。

しかし、ファイルをダウンロードできません。

これは私のコードです:

fileTransfer.download(
    "http://smartphone.thnt.vn/VietGames/GhepTranhTu/IOS/update/" + anhup[i], 
    "file:///SDCard/downloads/" + anhup[i],
    function (entry) {
        sa = entry.fullPath;
        alert("download complete: " + entry.fullPath);

        if(i < anhup.length - 1) {
            doDownload(i + 1);
        } else {
            alert("download done");
        }
    }, function (error) {
        console.log("download error source " + error.source);
        console.log("download error target " + error.target);
        console.log("upload error code" + error.code);
    }
);
4

1 に答える 1

0

これからSDカードのディレクトリパスを取得します:-

window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFSData, fail);

function gotFSData(fileSystem) {     
   console.log(fileSystem.root);                
   fileSystem.root.getDirectory("download", 
                                {create: true, exclusive: false}, 
                                gotFileEntrywriter, 
                                fail);                              
}
于 2013-04-27T03:41:04.020 に答える