phonegap resolveLocalFileSystemURL不适用于android上的内容uri

前端之家收集整理的这篇文章主要介绍了phonegap resolveLocalFileSystemURL不适用于android上的内容uri前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在Android版本5.1.1上使用Nexus 4手机从Android图片库接收分享图片.我正在使用phonegap 4.2和phonegap WebIntent插件github link以及phonegap文件插件doc link.

文本和链接工作正常,但当我尝试从Android库共享图像时,我得到一个这样的URI:

content://com.google.android.apps.photos.contentprovider/0/1/content%3A%2F%2Fmedia%2Fexternal%2Fimages%2Fmedia%2F63131/ACTUAL

而不是像file:/// ….

我尝试使用window.resolveLocalFileSystemURL函数来解析这个使用fileEntry对象返回成功的url.但是,当我尝试使用它来读取文件时,我收到代码1000的错误(参见下面的代码输出).

有趣的是,如果通过img标签显示此URL,我可以看到图像正常.

这表明问题可能是window.resolveLocalFileSystemURL函数无法处理内容:// …正确输入uris?

=====参考信息======

这是我正在使用的代码(注意:我尝试使用其他文件函数,如copyTo()到app文件夹,但它给出了相同的错误):

    document.addEventListener("deviceready",shared,false);
    document.addEventListener("resume",false);


 function shared () {

window.plugins.webintent.getExtra(window.plugins.webintent.EXTRA_STREAM,function(data) {
// data is the value of EXTRA_TEXT
    if (! data) {
        return;
    }

    window.resolveLocalFileSystemURL(
        data,function (entry) {
            console.log('file entry: ' + JSON.stringify(entry,null,3) );

            function win(file) {
                var reader = new FileReader();
                reader.onloadend = function (evt) {
                    console.log("file read success");
                    console.log(evt.target.result);
                };

                reader.readAsText(file);
            };

            function fail (error) {
                console.log("file read error: " + error.code);
            };

            entry.file(win,fail);

        },function (error) {
            console.log('file error: ' + error);
        });

},function() {
    // There was no extra supplied.
    // debug_log("web intent getExtra: no extra");
    }
);

}

当我尝试从图库中共享图像时,这是代码的控制台输出

handle share stream :"content://com.google.android.apps.photos.contentprovider/0/1/content%3A%2F%2Fmedia%2Fexternal%2Fimages%2Fmedia%2F63087/ACTUAL"
file entry: {
   "isFile": true,"isDirectory": false,"name": "ACTUAL","fullPath": "/com.google.android.apps.photos.contentprovider/0/1/content%3A//media/external/images/media/63087/ACTUAL","filesystem": "

这是AndroidManifest.xml文件中的intent过滤器.注意:共享工作正常,只是无法解析URL,所以这可能不是问题.

最佳答案
我一直有同样的问题,没有使用标准文件插件的直接解决方案.

我试过这个插件但是https://github.com/hiddentao/cordova-plugin-filepath只用于android内容uri的.

您使用此功能,它似乎正在工作.

window.FilePath.resolveNativePath(‘content:// …’,successCallback,errorCallback);

原文链接:https://www.f2er.com/android/431280.html

猜你在找的Android相关文章