当前位置:   article > 正文

fstream和stringstream之间的转换_c++ stringstream和fstream之间的转换

c++ stringstream和fstream之间的转换

#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);
}


<script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
阅读(1469) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
评论热议
声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号