2016-09-05 1 views
0

Я хочу получить доступ к каталогу камеры на устройстве Android в этом пути/хранилище/эмулировать/0/DCMI/Camera. Я следовал этому учебнику http://nightlycoding.com/index.php/2015/06/phonegapcordova-read-images-from-gallery-folder-tip/, который использует плагин для файла Cordova, https://github.com/apache/cordova-plugin-file. Проблема в том, что если я запустил приложение на Android 4.3, я могу получить доступ к этим файлам, но когда я протестировал приложение на устройстве Android Lollipop, файлы/каталоги внутри этого каталога пустые.Кордонский файловый плагин на Android Lollipop

Я дал вам код здесь

/* 
* Licensed to the Apache Software Foundation (ASF) under one 
* or more contributor license agreements. See the NOTICE file 
* distributed with this work for additional information 
* regarding copyright ownership. The ASF licenses this file 
* to you under the Apache License, Version 2.0 (the 
* "License"); you may not use this file except in compliance 
* with the License. You may obtain a copy of the License at 
* 
* http://www.apache.org/licenses/LICENSE-2.0 
* 
* Unless required by applicable law or agreed to in writing, 
* software distributed under the License is distributed on an 
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 
* KIND, either express or implied. See the License for the 
* specific language governing permissions and limitations 
* under the License. 
*/ 
var app = { 
    // Application Constructor 
    initialize: function() { 
     this.bindEvents(); 
    }, 
    // Bind Event Listeners 
    // 
    // Bind any events that are required on startup. Common events are: 
    // 'load', 'deviceready', 'offline', and 'online'. 
    bindEvents: function() { 
     document.addEventListener('deviceready', this.onDeviceReady, false); 
    }, 
    // deviceready Event Handler 
    // 
    // The scope of 'this' is the event. In order to call the 'receivedEvent' 
    // function, we must explicitly call 'app.receivedEvent(...);' 
    onDeviceReady: function() { 
     window.resolveLocalFileSystemURL(cordova.file.externalRootDirectory, onFileSystemSuccess, function(){alert("fail");}); 
    }, 
}; 
//app.mediaFiles = []; 

function onFileSystemSuccess(fileSystem) { 
    window.console.log(cordova.file.externalRootDirectory); 
    window.console.log(JSON.stringify(fileSystem)); 
    var directoryReader = fileSystem.createReader(); 
    alert(JSON.stringify(directoryReader)); //1 
    directoryReader.readEntries(function (entries) { 
     var i; 
     alert(JSON.stringify(entries)); //2 
     for (i = 0; i < entries.length; i++) { 
      if (entries[i].name === "DCIM") { 
       var dcimReader = entries[i].createReader(); 
       dcimReader.readEntries(onGetDCIM, fail); 
       break; // remove this to traverse through all the folders and files 
      } 
     } 
    }, function() { 
     window.console.log("fail"); 
    }); 
} 

function onGetDCIM(entries) { 
    var i; 
    for (i = 0; i < entries.length; i++) { 
     if (entries[i].name === "Camera") { 
      var mediaReader = entries[i].createReader(); 
      mediaReader.readEntries(onGetFileNames, fail); 
      break; // remove this to traverse through all the folders and files 
     } 
     //This will log all files and directories inside 100MEDIA 
     alert(" >>>>>>> " + entries[i].name); 
    } 
} 

function onGetFileNames(entries) { 
    var i; 
    var flag=true; 
    console.log("files"); 
    for (i = 0; i < entries.length; i++) { 
     if (/\.(jpe?g|png|gif|bmp)$/i.test(entries[i].name)) { 
      if (flag){ 
      alert(entries[i].nativeURL); 
      mostrarImagen(entries[i].nativeURL); 
      flag=false; 
      } 
      //app.mediaFiles.push(entries[i]); 
      //alert(JSON.stringify(entries[i])); 
     } 
     //This will log all image files found 
    } 
} 
function mostrarImagen(ImagePath){ 
    alert("mostrar la foto " + ImagePath); 
    var imagen = new Image(); 
    imagen.src = ImagePath; 
    document.getElementsByName("foto").src= imagen.src; 

} 
app.initialize(); 

первое предупреждение о "onFileSystemSuccess" функция показывает { "localURL": "cdvfile: // локальный/SDCard /", "hasReadEntries": ложные}. В андроиде 4.3 второе предупреждение отображает список подкаталогов на этом пути, но с Android 5 этот список пуст.

Некоторое решение? как я могу получить доступ к внешнему файлу на устройстве Android Lollipop?

ответ

0

Возможно, у вас возникла проблема с обновлениями политики безопасности (см. the cordova-plugin-file docs для получения дополнительной информации). Они новее, и хотя они делают приложения более безопасными, я все еще пытаюсь поймать все проблемы. Пару вещей, чтобы проверить:

  • index.html должен иметь соответствующий контент-безопасности, политики мета-тег для вещей, которые вы будете обращаетесь. Документы рекомендуют это в качестве отправной точки:

    <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap:cdvfile:https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">

  • config.xml должен разрешить локальный доступ:

    <access origin="*" />

+1

Привет !, спасибо за ответ, я мог бы решить эту проблему с помощью Android Permission явно, с новейшей версией Android вам нужно явно дать разрешение. –

 Смежные вопросы

  • Нет связанных вопросов^_^