C++/CLI怎么往TXT里写数据?急,在线等,谢谢
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++/CLI怎么往TXT里写数据?急,在线等,谢谢相关的知识,希望对你有一定的参考价值。
如:ofstream outfile("output.txt",ios::app);//定义文件流对象
if(!outfile)
cout<<"对不起,文件打开失败"<<endl;
exit(1);
outfile<<a<<" "<<b;//往文件中输入a b
outfile.close(); 参考技术A #include<string>
#include<fstream>
ofstream fout;
fout.open ("d:\\message.txt");
fout<<q->name <<endl;
fout<<q->tele <<endl;
fout<<q->street <<endl;
fout<<q->mailcode <<endl;
fout<<q->city <<endl;
fout<<q->state <<endl;
fout.close ();
以上是关于C++/CLI怎么往TXT里写数据?急,在线等,谢谢的主要内容,如果未能解决你的问题,请参考以下文章
Java 出力Excel 文件,并向该文件中写固定格式的日期。我往文件里写的是yyyy-mm-dd