问题是我的文件是在//sdcard/MyDir/test.pdf(我使用adb shell确认)创建的,但是fileEntry返回了一个没有sdcard://MyDir/test.pdf的路径. fileTransfer.download因此路径失败.它也失败了相对路径MyDir / test.pdf.
如果我用’sdcard’硬编码完整路径,我可以避免使用file_NOT_FOUND_ERR(具体来说,在fileTransfer.java中,resourceAPI.mapUriTofile调用成功),但后来我得到一个CONNECTION_ERR并且控制台显示“文件插件不能代表下载路径”. (在fileTransfer.java中,filePlugin.getEntryForfile调用返回null.我假设它不喜欢路径中的’sdcard’.)
有没有更好的方法在fileTransfer.download中指定目标路径?
var downloadUrl = "http://mysite/test.pdf";var relativefilePath = "MyDir/test.pdf"; // using an absolute path also does not workwindow.requestfileSystem(LocalfileSystem.PERSISTENT,function (fileSystem) { fileSystem.root.getfile(relativefilePath,{ create: true },function (fileEntry) { console.log(fileEntry.fullPath); // outputs: "//MyDir/test.pdf" var fileTransfer = new fileTransfer(); fileTransfer.download( downloadUrl,/********************************************************/ /* THE PROBLEM IS HERE */ /* These paths fail with file_NOT_FOUND_ERR */ //fileEntry.fullPath,// this path fails. it's "//MyDir/test.pdf" //relativefilePath,// this path fails. it's "MyDir/test.pdf" /* This path gets past the file_NOT_FOUND_ERR but generates a CONNECTION_ERR */ "//sdcard/MyDir/test.pdf" /********************************************************/ function (entry) { console.log("Success"); },function (error) { console.log("Error during download. Code = " + error.code); } ); });});
我正在使用AndroID SDK模拟器,如果这有所作为.
解决方法 我能够通过使用文件路径的URI来解决这个问题. (我还根据@Regent的评论删除了对fileSystem.root.getfile的不必要调用.)var downloadUrl = "http://mysite/test.pdf";var relativefilePath = "MyDir/test.pdf"; // using an absolute path also does not workwindow.requestfileSystem(LocalfileSystem.PERSISTENT,function (fileSystem) { var fileTransfer = new fileTransfer(); fileTransfer.download( downloadUrl,// The correct path! fileSystem.root.toURL() + '/' + relativefilePath,function (entry) { console.log("Success"); },function (error) { console.log("Error during download. Code = " + error.code); } );});总结
以上是内存溢出为你收集整理的android – PhoneGap FileTransfer.download期望与FileSystem提供的路径不同全部内容,希望文章能够帮你解决android – PhoneGap FileTransfer.download期望与FileSystem提供的路径不同所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)