サーバーから画像をダウンロードして 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);
}
);