如何使用 phonegap 在 Android Sdcard 中创建文件和保存文件?
问问题
3171 次
1 回答
7
// create a file writer object
function CreateFileWriter()
{
// request the file system object
window.requestFileSystem( LocalFileSystem.PERSISTENT, 0, OnFileSystemSuccess,fail);
}
function OnFileSystemSuccess( pFileSystemObj )
{
console.log( pFileSystemObj.name );
console.log( pFileSystemObj.root.name );
pFileSystemObj.root.getFile( "file_name.txt", {create: true, exclusive: false}, OnFileGetSuccess, fail);
}
function OnFileGetSuccess( pFileEntryObj )
{
pFileEntryObj.createWriter( function(pWriterObj){
gWriterObj = pWriterObj;
}, fail );
}
function fail(evt)
{
console.log(evt.target.error.code);
}
这里 create file writer 方法提供了文件系统的句柄。在成功函数中,我们得到名为“file_name.txt”的文件,如果存在则打开,否则创建。
于 2013-01-17T06:03:36.703 回答