首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

用ofstream做输出有关问题,请帮忙

2012-04-10 
用ofstream做输出问题,请帮忙!有一已经有内容的文本文件ttt.txt,我想用ofstream打开它,到文件的末尾添加内

用ofstream做输出问题,请帮忙!
有一已经有内容的文本文件ttt.txt,我想用ofstream打开它,到文件的末尾添加内容,可以吗?


[解决办法]
你这个好像是要用追加的方式打开ttt.txt吧
ofstream myFile("ttt.txt ", ios::app);
myfile.write("test", 4);

记得include
[解决办法]

C/C++ code
#include "fstream.h"    char* str1="good";ofstream out("11.txt"); out.write(str1,strlen(str1));out.close();
[解决办法]
要输出中文就用下面的代码
C/C++ code
    #include "fstream.h"    char* str1="good一万个理由!!";    ofstream out("11.txt",ios::app);     out<<str1<<endl;    // out.write(str1,strlen(str1));    out.close(); 

热点排行