C++ 使用string::getline读取文件内容,sstream::stringstream

来源:互联网 发布:软件构件配置 编辑:程序博客网 时间:2024/05/21 06:41

stringstream :   http://hi.baidu.com/lchpeng/blog/item/ad70ac1faa46bf148618bfef.html
                            http://apps.hi.baidu.com/share/detail/32733657

使用ifstream和getline读取文件内容: http://www.cnblogs.com/kevin2010_vip/archive/2010/02/03/1662853.html

假设有一个叫 
data.txt 的文件, 它包含以下内容: 


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

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

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

using namespace std;

//输出空行
void OutPutAnEmptyLine()
{
    cout
<<"\n";
}


//读取方式: 逐词读取, 词之间用空格区分
//read data from the file, Word BWord
//when used in this manner, we'll get space-delimited bits of text from the file
//but all of the whitespace that separated words (including newlines) was lost. 
void ReadDataFromFileWBW()
{
    ifstream fin(
"data.txt");  
    
string s;  
    
while( fin >> s ) 
    
{    
        cout 
<< "Read from file: " << s << endl;  
    }

}


//读取方式: 逐行读取, 将行读入字符数组, 行之间用回车换行区分
//If we were interested in preserving whitespace, 
//we could read the file in Line-By-Line using the I/O getline() function.
void ReadDataFromFileLBLIntoCharArray()
{
    ifstream fin(
"data.txt"); 
    
const int LINE_LENGTH = 100
    
char str[LINE_LENGTH];  
    
while( fin.getline(str,LINE_LENGTH) )
    
{    
        cout 
<< "Read from file: " << str << endl;
    }

}


//读取方式: 逐行读取, 将行读入字符串, 行之间用回车换行区分
//If you want to avoid reading into character arrays, 
//you can use the C++ string getline() function to read lines into strings
void ReadDataFromFileLBLIntoString()
{
    ifstream fin(
"data.txt");  
    
string s;  
    
while( getline(fin,s) )
    
{    
        cout 
<< "Read from file: " << s << endl; 
    }

}


//带错误检测的读取方式
//Simply evaluating an I/O object in a boolean context will return false 
//if any errors have occurred
void ReadDataWithErrChecking()
{
    
string filename = "dataFUNNY.txt";  
    ifstream fin( filename.c_str());  
    
if!fin ) 
    
{   
        cout 
<< "Error opening " << filename << " for input" << endl;   
        exit(
-1);  
    }

}


int main()
{
    ReadDataFromFileWBW(); 
//逐词读入字符串 
    OutPutAnEmptyLine(); //输出空行

    ReadDataFromFileLBLIntoCharArray(); 
//逐词读入字符数组
    OutPutAnEmptyLine(); //输出空行

    ReadDataFromFileLBLIntoString(); 
//逐词读入字符串
    OutPutAnEmptyLine(); //输出空行

    ReadDataWithErrChecking(); 
//带检测的读取
    return 0;
}

输出结果为:
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


-----------------------------------------------------------------------------------------------------------------------

三、读写文件

  读写文件分为文本文件和二进制文件的读取,对于文本文件的读取比较简单,用插入器和析取器就可以了;而对于二进制的读取就要复杂些,下要就详细的介绍这两种方式

  1、文本文件的读写

  文本文件的读写很简单:用插入器(<<)向文件输出;用析取器(>>)从文件输入。假设file1是以输入方式打开,file2以输出打开。示例如下:

  file2<<"I Love You";//向文件写入字符串"I Love You"

  int i;

  file1>>i;//从文件输入一个整数值。

  这种方式还有一种简单的格式化能力,比如可以指定输出为16进制等等,具体的格式有以下一些

  操纵符 功能 输入/输出

  dec 格式化为十进制数值数据 输入和输出

  endl 输出一个换行符并刷新此流 输出

  ends 输出一个空字符 输出

  hex 格式化为十六进制数值数据 输入和输出

  oct 格式化为八进制数值数据 输入和输出

  setpxecision(int p) 设置浮点数的精度位数 输出

  比如要把123当作十六进制输出:file1<<hex<<123;要把3.1415926以5位精度输出:file1<<setpxecision(5)<<3.1415926。

  2、二进制文件的读写

  ①put()

  put()函数向流写入一个字符,其原型是ofstream &put(char ch),使用也比较简单,如file1.put('c');就是向流写一个字符'c'。

  ②get()

  get()函数比较灵活,有3种常用的重载形式:

  一种就是和put()对应的形式:ifstream &get(char &ch);功能是从流中读取一个字符,结果保存在引用ch中,如果到文件尾,返回空字符。如file2.get(x);表示从文件中读取一个字符,并把读取的字符保存在x中。

  另一种重载形式的原型是: int get();这种形式是从流中返回一个字符,如果到达文件尾,返回EOF,如x=file2.get();和上例功能是一样的。

  还有一种形式的原型是:ifstream &get(char *buf,int num,char delim='\n');这种形式把字符读入由 buf 指向的数组,直到读入了 num 个字符或遇到了由 delim 指定的字符,如果没使用 delim 这个参数,将使用缺省值换行符'\n'。例如:

  file2.get(str1,127,'A');    //从文件中读取字符到字符串str1,当遇到字符'A'或读取了127个字符时终止。

③读写数据块

  要读写二进制数据块,使用成员函数read()和write()成员函数,它们原型如下:

  read(unsigned char *buf,int num);

  write(const unsigned char *buf,int num);

  read()从文件中读取 num 个字符到 buf 指向的缓存中,如果在还未读入 num 个字符时就到了文件尾,可以用成员函数 int gcount();来取得实际读取的字符数;而 write() 从buf 指向的缓存写 num 个字符到文件中,值得注意的是缓存的类型是 unsigned char *,有时可能需要类型转换。

  例:

  unsigned char str1[]="I Love You";

  int n[5];

  ifstream in("xxx.xxx");

  ofstream out("yyy.yyy");

  out.write(str1,strlen(str1));//把字符串str1全部写到yyy.yyy中

  in.read((unsigned char*)n,sizeof(n));//从xxx.xxx中读取指定个整数,注意类型转换

  in.close();out.close();

  四、检测EOF

  成员函数eof()用来检测是否到达文件尾,如果到达文件尾返回非0值,否则返回0。原型是int eof();

  例:     if(in.eof())    ShowMessage("已经到达文件尾!");

  五、文件定位

  和C的文件操作方式不同的是,C++ I/O系统管理两个与一个文件相联系的指针。一个是读指针,它说明输入操作在文件中的位置;另一个是写指针,它下次写操作的位置。每次执行输入或输出时, 相应的指针自动变化。所以,C++的文件定位分为读位置和写位置的定位,对应的成员函数是seekg()和seekp()。seekg()是设置读位置, seekp是设置写位置。它们最通用的形式如下:

  istream &seekg(streamoff offset,seek_dir origin);

  ostream &seekp(streamoff offset,seek_dir origin);

  streamoff定义于 iostream.h 中,定义有偏移量 offset 所能取得的最大值,seek_dir 表示移动的基准位置,是一个有以下值的枚举:

  ios::beg:     文件开头

  ios::cur:     文件当前位置

  ios::end:     文件结尾

  这两个函数一般用于二进制文件,因为文本文件会因为系统对字符的解释而可能与预想的值不同。例:

  file1.seekg(1234,ios::cur);    //把文件的读指针从当前位置向后移1234个字节

  file2.seekp(1234,ios::beg);    //把文件的写指针从文件开头向后移1234个字节