0

我需要一个在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 从服务器获取数据

4

1 回答 1

0

以下是相关的 Cordova 文档:http ://docs.phonegap.com/en/3.0.0/cordova_file_file.md.html#File

于 2013-08-01T20:41:36.890 回答