访问excel表数据到我们的应用程序

时间:2015-04-02 08:53:58

标签: cordova filesystems filereader android-sdcard import-from-excel

我们已将excel放在我的Android手机SdCard的某个位置。我们需要将excel数据访问到我的应用程序中。 我们流了这个链接http://docs.phonegap.com/en/2.0.0/cordova_file_file.md.html#FileReader 所以我们尝试过这样但这不适合我

 window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail); 

我们尝试过这样: -

function init(){
alert("selectItems");
  //document.addEventListener("deviceready", getDeviceLocation , false); 
 getDeviceLocation();
}
function getDeviceLocation() {
    alert("Ready");
        window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
    }
function gotFS(fileSystem) {

    alert("fileSystem");

    fileSystem.root.getFile("test_excel.xlsx", null, gotFileEntry, fail);
}

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

function gotFile(file){
alert("gotFile");
    readDataUrl(file);
    readAsText(file);
}

function readDataUrl(file) {

 alert("file");

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

function readAsText(file) {
 alert("ineral1");
    var reader = new FileReader();
    reader.onloadend = function(evt) {
     alert("ineral2");
        console.log("Read as text");
        console.log(evt.target.result);
    };
    reader.readAsText(file);
}

function fail(error) {
    alert("error");
    console.log(error.code);
}

gotFS方法没有被调用。请以正确与否的方式指导我。如果有其他方法可以帮助我

0 个答案:

没有答案