Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1726248
  • 博文数量: 347
  • 博客积分: 9328
  • 博客等级: 中将
  • 技术积分: 2680
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-29 23:45
文章分类

全部博文(347)

文章存档

2016年(1)

2013年(4)

2012年(207)

2011年(85)

2010年(50)

分类: C/C++

2010-12-06 23:02:08


#include <fstream>
#include <sstream>

    const char* filepath = "C:/test.txt";
    ifstream in(filepath);
    if(in.bad())
    {
        printf("open file '%d' failed!", filepath);
        return;
    }
    stringstream ss;

    ss << in.rdbuf();
    string str(ss.str());
    printf(str.c_str());
    
    in.close();
 


这里再贴上用fopen()打开一个文件并写入二进制流的方法。

void RegexSearch::LoadStreamFromFile( char** buffer,const char* filepath )
{
    FILE* pFile = NULL;
    int err = ::fopen_s(&pFile, filepath, "rb");
    if(0 != err)
    {
        printf("open file '%s' failed!", filepath);
        return;
    }
    unsigned int length = 0;
    int growSize = 512;
    while(!feof(pFile))
    {
        char* temp = (char*)calloc(length + growSize, sizeof(char));
        //将之前已读取的字节流拷贝到新的已扩容的动态数组中
        memcpy( temp, *buffer, length );
        if(*buffer)
            free(*buffer);
        *buffer = temp;
        //每次读取固定大小growSize长度个字符,并拼接到*buffer指向的字符串尾部
        fread((*buffer) + length, sizeof(char), growSize, pFile);
        length += growSize;
    }
    fclose(pFile);
}


阅读(3069) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~