码迷,mamicode.com
首页 > 编程语言 > 详细

c++ 读文本文件

时间:2014-05-19 21:27:01      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:class   c   a   get   文件   string   

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++ 读文本文件

标签:class   c   a   get   文件   string   

原文地址:http://www.cnblogs.com/anjsxz/p/3731477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!