用ofstream做输出问题,请帮忙!
有一已经有内容的文本文件ttt.txt,我想用ofstream打开它,到文件的末尾添加内容,可以吗?
[解决办法]
你这个好像是要用追加的方式打开ttt.txt吧
ofstream myFile("ttt.txt ", ios::app);
myfile.write("test", 4);
记得include
[解决办法]
#include "fstream.h" char* str1="good";ofstream out("11.txt"); out.write(str1,strlen(str1));out.close();
[解决办法]
要输出中文就用下面的代码
#include "fstream.h" char* str1="good一万个理由!!"; ofstream out("11.txt",ios::app); out<<str1<<endl; // out.write(str1,strlen(str1)); out.close();