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

C++ 文件读取

时间:2016-03-16 22:41:20      阅读:295      评论:0      收藏:0      [点我收藏+]

标签:

#include <iostream>
#include <fstream>
#include <string>

using namespace std;

int main() {

    ifstream in;
    in.open("test.txt");
    if(!in){
        cout << "open file failed !"<< endl;
        return 1;
    }


//    char ch;
//    // get a char
//    while(in.read(&ch, 1)) {  /// or replace with : in.get(ch)
//        cout << ch << endl;
//    }


    // get a line
    char chr[20];
    while(in.getline(chr, 15)){
        cout << chr <<endl;
    }
    in.close();

    return 0;
}

其他操作可参考:http://www.cnblogs.com/flatfoosie/archive/2010/12/22/1914055.html

C++ 文件读取

标签:

原文地址:http://www.cnblogs.com/lifeinsmile/p/5285250.html

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