MFC C++ 将edit1和edit2的内容另存为txt文档保存,并且换行显示,请问怎么实现?谢谢啦!
1个回答
展开全部
用CString保存两个edit的文本,用文件流进行文件操作,包含fstream这个头文件
CString edit1, edit2, filename;//这三个请自己赋值
ofstream ofs(filename);
ofs.write(edit1, edit1.GetLength());//注意看看是不是这个函数,取字符串长度的
ofs.write("\n", 1);
ofs.write(edit2, edit2.GetLength());
ofs.close();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询