写入文件(覆盖文件的内容)

Posted peipeiyu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了写入文件(覆盖文件的内容)相关的知识,希望对你有一定的参考价值。

技术分享图片

function saveEltValuestoFile(that,signleList){
//eltid是用来给文件命名的关键字
plus.io.requestFileSystem(plus.io.PUBLIC_DOCUMENTS,
function(fs){
//fs.root 是根目录操作对象
fs.root.getFile("msg/"+userid+".txt",{create:true}, function(fileEntry){
fileEntry.file(function(file){
//写入文件
fileEntry.createWriter(
function(writer){
writer.onwrite = function(e){
console.log(e);
console.log(JSON.stringify(e));
console.log("写入数据成功");
}
writer.write(JSON.stringify(signleList));
$(that).parent().parent().remove();
},
function(error){
console.log("创建Writer失败" + error.message);
});
/////读取文件
var fileReader =new plus.io.FileReader();
console.log("getFile:" + JSON.stringify(file));
fileReader.readAsText(file,‘utf-8‘);
fileReader.onloadend = function(evt){
console.log("msg/"+userid+".txt"+JSON.stringify(evt));
console.log("evt.target" + JSON.stringify(evt.target));
console.log("evt.target.result" + JSON.stringify(evt.target.result));
console.log(JSON.parse(evt.target.result));
}
});
},
function(err){
console.log("访问File失败"+ err.message);
}
)
},
function(error){
console.log("访问_DOC目录失败"+ error.message);
}
);
}











































以上是关于写入文件(覆盖文件的内容)的主要内容,如果未能解决你的问题,请参考以下文章

在C语言中,fopen一个文件 如何能够在写入新的数据覆盖原文件中指定长度的内容

写入文件(覆盖文件的内容)

java 字节流 多个文件写入一个文件 为啥前面写入的内容会被覆盖了

如何在不覆盖当前内容的情况下写入文件? [复制]

Python file重复写入之前的内容不被后写入的覆盖

怎么做到Python file重复写入之前的内容不被后写入的覆盖