I'm new to phonegap.
I'm using phonegap-1.1.0 + Android2.3

I want to read a text file in assets/www

I tried all the examples which is there in the phonegap site. Nothing working for me

Can anyone help me by sharing sample code.

link|improve this question
1  
need more info. how did u try? – ghostCoder Jan 5 at 10:12
Var file=”file:///android_assets/www/readme.txt; readFile(file); function readFile(file) { var reader = new FileReader(); reader.onloadend = function(evt) { console.log("Read as text"); console.log(evt.target.result); //returning null }; reader.readAsText(file); } This is my code... – Manikandan P Jan 6 at 5:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.