Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Writing and reading file in phonegap

I tried writing/reading a file in phonegap+android, here is the set up:

$(document).ready(function() {
    document.addEventListener("deviceready", deviceready, true);

    $(document).bind("deviceready", function(){
    //writeFile();
    //readFile();
    });
});

function deviceready() {
    writeFile();
    readFile();
}

// This is just to do this.
function readFile() {
    var d = navigator.file.read('/sdcard/foo.xml', success(), fail());
    console.warn(d);
}

function writeFile() {
    navigator.file.write('/sdcard/foo.xml', "This is a test of writing to a file",
            success(), fail());
}

But on the emulator for Android 2.2, I got the following error message:

08-06 14:21:29.428: INFO/Web Console(936): Error in success callback: Network Status1 = TypeError: Result of expression 'navigator.file' [undefined] is not an object. at file:///android_asset/www/phonegap.0.9.6.js:649

What could be missing and what could be tried?

like image 850
Demonick Avatar asked Aug 06 '11 15:08

Demonick


1 Answers

This also works in Android 2.2. You call the load(); function from body's onLoad, and writeFileFromSDCard(string) from some button's onClick, passing as parameter the string you want to write in the file.

<script type="text/javascript" charset="utf-8">

 // Event listener    
 function load() {
    document.addEventListener('deviceready', init, false);
 }

 // Called when device is ready - Do nothing 
   function init() {
 }      

// Called to write file to card
   function writeFileFromSDCard(param) {

    var writer = new FileWriter("/sdcard/write.txt");
    writer.write(param + "\n", false);              
    alert("file Written to SD Card");
}

</script>
like image 85
Luis Corral Avatar answered Sep 29 '22 21:09

Luis Corral