PhoneGap的 - 如何assets/www/example/hallo.text
我的錯誤創建一個新的文件是"Error fileSystem"
如何創建一個新的文件
window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem;
window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
function fail() {
confirm('Error fileSystem');
}
function gotFS(fileSystem) {
fileSystem.root.getFile("file:///android_asset/www/example/hallo.text", {
create: true
}, gotFileEntry, fail);
}
function gotFileEntry(fileEntry) {
fileEntry.createWriter(gotFileWriter, fail);
}
function gotFileWriter(writer) {
writer.write("hallo");
}
我得到錯誤代碼5即FileError.ENCODING_ERR – samibel
是,當你使用路徑以'文件://'或沒有? – apsillers
與文件:// getFile(「file:/// android_asset – samibel