phonegap resolveLocalFileSystemURL不适用于android

时间:2015-06-19 02:09:28

标签: android image cordova uri webintents

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

文字和链接工作正常但是当我尝试从Android图库分享图片时,我得到了这样的URI:

  

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

而不是像file:/// ....

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

有趣的是,如果通过img标签显示此网址,我可以看到图片正常。

<img src="" id="test_intent_image">
$('#test_intent_image').attr("src",uri);

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

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

以下是我正在使用的代码(注意:我尝试使用其他文件函数,例如copyTo()到app文件夹,但它会出现同样的错误):

    document.addEventListener("deviceready", shared, false);
    document.addEventListener("resume", shared, 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": "<FileSystem: content>",
   "nativeURL": "content://com.google.android.apps.photos.contentprovider/0/1/content%3A%2F%2Fmedia%2Fexternal%2Fimages%2Fmedia%2F63087/ACTUAL"
}
file read error: 1000

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

<intent-filter>
<action android:name="android.intent.action.SEND" />
            <category android:name="android.intent.category.DEFAULT" />
            <data android:mimeType="*/*" />
        </intent-filter>

2 个答案:

答案 0 :(得分:3)

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

我尝试了这个插件https://github.com/hiddentao/cordova-plugin-filepath,这只适用于Android内容uri&#39>。

您使用此功能,它似乎正在运作。

window.FilePath.resolveNativePath('content://...', successCallback, errorCallback);

答案 1 :(得分:1)

科尔多瓦网站上存在一个关于此问题的漏洞。

https://issues.apache.org/jira/browse/CB-7024