使用ifstream和getline读取文件内容[c++] ZZ

时间:2023-12-16 14:26:20
假设有一个叫 data.txt 的文件, 它包含以下内容:
使用ifstream和getline读取文件内容[c++] ZZFry: One Jillion dollars.
使用ifstream和getline读取文件内容[c++] ZZ[Everyone gasps.]
使用ifstream和getline读取文件内容[c++] ZZAuctioneer: Sir, that's not a number.
使用ifstream和getline读取文件内容[c++] ZZ数据读取, 测试 。使用ifstream和getline读取文件内容[c++] ZZ

以下就是基于 data.txt 的数据读取操作:

使用ifstream和getline读取文件内容[c++] ZZ#include <iostream>
使用ifstream和getline读取文件内容[c++] ZZ#include <fstream>
使用ifstream和getline读取文件内容[c++] ZZ#include <string>
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZusing namespace std;
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ//输出空行
使用ifstream和getline读取文件内容[c++] ZZvoid OutPutAnEmptyLine()
使用ifstream和getline读取文件内容[c++] ZZ{
使用ifstream和getline读取文件内容[c++] ZZ    cout<<"\n";
使用ifstream和getline读取文件内容[c++] ZZ}
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ//读取方式: 逐词读取, 词之间用空格区分
使用ifstream和getline读取文件内容[c++] ZZ//read data from the file, Word BWord
使用ifstream和getline读取文件内容[c++] ZZ//when used in this manner, we'll get space-delimited bits of text from the file
使用ifstream和getline读取文件内容[c++] ZZ//but all of the whitespace that separated words (including newlines) was lost. 
使用ifstream和getline读取文件内容[c++] ZZvoid ReadDataFromFileWBW()
使用ifstream和getline读取文件内容[c++] ZZ{
使用ifstream和getline读取文件内容[c++] ZZ    ifstream fin("data.txt");  
使用ifstream和getline读取文件内容[c++] ZZ    string s;  
使用ifstream和getline读取文件内容[c++] ZZ    while( fin >> s ) 
使用ifstream和getline读取文件内容[c++] ZZ    {    
使用ifstream和getline读取文件内容[c++] ZZ        cout << "Read from file: " << s << endl;  
使用ifstream和getline读取文件内容[c++] ZZ    }
使用ifstream和getline读取文件内容[c++] ZZ}
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ//读取方式: 逐行读取, 将行读入字符数组, 行之间用回车换行区分
使用ifstream和getline读取文件内容[c++] ZZ//If we were interested in preserving whitespace, 
使用ifstream和getline读取文件内容[c++] ZZ//we could read the file in Line-By-Line using the I/O getline() function.
使用ifstream和getline读取文件内容[c++] ZZvoid ReadDataFromFileLBLIntoCharArray()
使用ifstream和getline读取文件内容[c++] ZZ{
使用ifstream和getline读取文件内容[c++] ZZ    ifstream fin("data.txt"); 
使用ifstream和getline读取文件内容[c++] ZZ    const int LINE_LENGTH = 100; 
使用ifstream和getline读取文件内容[c++] ZZ    char str[LINE_LENGTH];  
使用ifstream和getline读取文件内容[c++] ZZ    while( fin.getline(str,LINE_LENGTH) )
使用ifstream和getline读取文件内容[c++] ZZ    {    
使用ifstream和getline读取文件内容[c++] ZZ        cout << "Read from file: " << str << endl;
使用ifstream和getline读取文件内容[c++] ZZ    }
使用ifstream和getline读取文件内容[c++] ZZ}
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ//读取方式: 逐行读取, 将行读入字符串, 行之间用回车换行区分
使用ifstream和getline读取文件内容[c++] ZZ//If you want to avoid reading into character arrays, 
使用ifstream和getline读取文件内容[c++] ZZ//you can use the C++ string getline() function to read lines into strings
使用ifstream和getline读取文件内容[c++] ZZvoid ReadDataFromFileLBLIntoString()
使用ifstream和getline读取文件内容[c++] ZZ{
使用ifstream和getline读取文件内容[c++] ZZ    ifstream fin("data.txt");  
使用ifstream和getline读取文件内容[c++] ZZ    string s;  
使用ifstream和getline读取文件内容[c++] ZZ    while( getline(fin,s) )
使用ifstream和getline读取文件内容[c++] ZZ    {    
使用ifstream和getline读取文件内容[c++] ZZ        cout << "Read from file: " << s << endl; 
使用ifstream和getline读取文件内容[c++] ZZ    }
使用ifstream和getline读取文件内容[c++] ZZ}
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ//带错误检测的读取方式
使用ifstream和getline读取文件内容[c++] ZZ//Simply evaluating an I/O object in a boolean context will return false 
使用ifstream和getline读取文件内容[c++] ZZ//if any errors have occurred
使用ifstream和getline读取文件内容[c++] ZZvoid ReadDataWithErrChecking()
使用ifstream和getline读取文件内容[c++] ZZ{
使用ifstream和getline读取文件内容[c++] ZZ    string filename = "dataFUNNY.txt";  
使用ifstream和getline读取文件内容[c++] ZZ    ifstream fin( filename.c_str());  
使用ifstream和getline读取文件内容[c++] ZZ    if( !fin ) 
使用ifstream和getline读取文件内容[c++] ZZ    {   
使用ifstream和getline读取文件内容[c++] ZZ        cout << "Error opening " << filename << " for input" << endl;   
使用ifstream和getline读取文件内容[c++] ZZ        exit(-1);  
使用ifstream和getline读取文件内容[c++] ZZ    }
使用ifstream和getline读取文件内容[c++] ZZ}
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZint main()
使用ifstream和getline读取文件内容[c++] ZZ{
使用ifstream和getline读取文件内容[c++] ZZ    ReadDataFromFileWBW(); //逐词读入字符串 
使用ifstream和getline读取文件内容[c++] ZZ    OutPutAnEmptyLine(); //输出空行
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ    ReadDataFromFileLBLIntoCharArray(); //逐词读入字符数组
使用ifstream和getline读取文件内容[c++] ZZ    OutPutAnEmptyLine(); //输出空行
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ    ReadDataFromFileLBLIntoString(); //逐词读入字符串
使用ifstream和getline读取文件内容[c++] ZZ    OutPutAnEmptyLine(); //输出空行
使用ifstream和getline读取文件内容[c++] ZZ
使用ifstream和getline读取文件内容[c++] ZZ    ReadDataWithErrChecking(); //带检测的读取
使用ifstream和getline读取文件内容[c++] ZZ    return 0;
使用ifstream和getline读取文件内容[c++] ZZ}

输出结果为:
Read from file: Fry:
Read from file: One
Read from file: Jillion
Read from file: dollars.
Read from file: [Everyone
Read from file: gasps.]
Read from file: Auctioneer:
Read from file: Sir,
Read from file: that's
Read from file: not
Read from file: a
Read from file: number.
Read from file: 数据读取,
Read from file: 测试
Read from file: 。

Read from file: Fry: One Jillion dollars.
Read from file: [Everyone gasps.]
Read from file: Auctioneer: Sir, that's not a number.
Read from file: 数据读取, 测试 。

Read from file: Fry: One Jillion dollars.
Read from file: [Everyone gasps.]
Read from file: Auctioneer: Sir, that's not a number.
Read from file: 数据读取, 测试 。

Error opening  dataFUNNY.txt for input
Press any key to continue

http://www.cnblogs.com/jcsu/articles/1190685.html