#include <iostream> #include <fstream> int main(int argc, char** argv) { std::string str; //--------1.向文件里写入数据-------- std::cout<<"请输入您希望输入的数据。按“回车”键结束。"<<std::endl; std::cin>>str; //没有这个文件,会自己主动创建 std::ofstream outfile("e:\123.txt",std::ios::app); //写入到文件里 outfile<<str; //一定要关闭 outfile.close(); //--------2.从文件里读取数据--------- std::ifstream infile("e:\123.txt"); char cs[1024]; //从文件里读取 std::cout<<"文件里的数据为:"<<std::endl; while(infile>>cs){ //输出 std::cout<<cs<<std::endl; } //关闭 infile.close(); return 0; }
调试截图: