标签:
写文件:
ofstream of; of.open("test.txt"); string content = "abcd"; of.write(content.c_str(),content.length()); of<<endl; of<<"1234"; of.close();
读文件:
C++ 文本读写
原文地址:http://www.cnblogs.com/sunqin/p/4499315.html