c++ 读文本文件

1. 

 std::ifstream t("example.txt");

    std::string str((std::istreambuf_iterator<char>(t)),

                    std::istreambuf_iterator<char>());

2

void readfile(const std::string &filepath,std::string &buffer){

    std::ifstream fin(filepath.c_str());

    getline(fin, buffer, char(-1));

    fin.close();

}

3

void readfile(const std::string &filepath,std::string &buffer){

    std::ifstream fin(filepath.c_str());

    stringstream strStream;

    strStream << fin.rdbuf();

    buffer= strStream.str();

    fin.close();

}

c++ 读文本文件,布布扣,bubuko.com

c++ 读文本文件

上一篇:WinSockAPI多线程服务器


下一篇:【Javascript高级程序设计】数据类型与typeof