在IOS中检索文本文件

时间:2013-02-19 07:21:09

标签: ios html5 file cordova

我创建了一个使用phonegap定位IPad的应用程序。我使用phonegap的API动态创建了一个文本文件。文件位置显示/var/mobile/Applications/C9D4....../Documents/DataFiles。 我如何访问该文件?

请帮忙。提前致谢

1 个答案:

答案 0 :(得分:0)

试试这个

function getfile(){
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, onFail);

function onFail(message) {
      alert('Failed because: ' + message);
    }

    function gotFS(fileSystem) {
        fileSystem.root.getFile("/var/mobile/Applications/C9D4....../Documents/DataFiles", {create: true}, gotFileEntry, fail);
    }

    function gotFileEntry(fileEntry) {
        fileEntry.file(gotFile, fail);
    }

    function gotFile(file){
        readDataUrl(file);  
    }

    function readDataUrl(file) {
           var reader = new FileReader();
           reader.onloadend = function(evt) {
           console.log("Read as data URL");
           console.log(evt.target.result);

        }; 
        reader.readAsDataURL(file);
    }

    function fail(evt) {
        console.log(evt.target.error.code);
    }

}