file.entry phonegap不起作用

时间:2014-10-20 17:30:09

标签: android file cordova base64

我试图使用getPicture插件在Android设备中选择一个文件,在其成功回调中我已经使用此代码:

 function showAlbumOnSuccess(imageURI){

            window.resolveLocalFileSystemURI(imageURI, function(entry){

                alert(decodeURI(entry.name)); //this show the file name

                entry.file(function(file){
                    var reader = new FileReader();

                      reader.onloadend = function (evt) {
                        alert("read success");
                        console.log(evt.target.result);
                      };

                    reader.readAsDataURL(file);

                },function(error){
                     alert("error "+error); 
                });

   },function(error){
              alert("error : "+error);
          }); 

    }

当我运行此代码时,mi app立即显示

file.entry errorCallback (error code: [object : Object])

java.net.MalformedURLException:没有为此URL安装处理程序

我需要从所选文件中获取base64代码。

谢谢。

0 个答案:

没有答案