我需要一个函数来读取和写入phonegap中的文件。
例如:
function isTextFileEmpty(fileName){
//this function should return weather the file is empty or not. If file empty then return true... if file is not empty then return false
}
function getTextFileContent(fileName){
//this function should return content of the file
}
function writeTextFile(fileName, textContent){
//this function should write given text in the file
}
www/
文件夹将userinfo.txt
当用户打开应用程序时,我需要检查的是userinfo.txt是否为空。假设它是空的然后我会询问引脚号...所以用户将输入引脚号...所以我将把引脚号存储在文本文件中。所以下次我将检查文件是否为空如果它不为空...然后我将从文件中获取引脚号并将使用它通过JSON从服务器获取数据
答案 0 :(得分:0)
以下是相关的Cordova文档:http://docs.phonegap.com/en/3.0.0/cordova_file_file.md.html#File