fstream和stringstream之间的转换


#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) |
给主人留下些什么吧!~~
评论热议
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是一个简单的C++程序,可以实现二进制文件和十六进制文件的相互转换。该程序使用了多线程来提高转换速度。 ```c++ #include <iostream> #include <fstream> #include <sstream> #include <vector> #include <thread> #include <mutex> using namespace std; mutex mtx; // 互斥锁,用于线程安全输出 void binaryToHex(const string& inputFileName, const string& outputFileName) { ifstream inputFile(inputFileName, ios::binary); ofstream outputFile(outputFileName); stringstream ss; ss << hex << uppercase << noshowbase << noskipws; char c; while (inputFile >> c) { ss << static_cast<int>(c); } string hexString = ss.str(); for (int i = 0; i < hexString.length(); i += 2) { string byteString = hexString.substr(i, 2); outputFile << byteString << " "; } mtx.lock(); cout << "Binary to hex conversion completed!" << endl; mtx.unlock(); } void hexToBinary(const string& inputFileName, const string& outputFileName) { ifstream inputFile(inputFileName); ofstream outputFile(outputFileName, ios::binary); stringstream ss; string hexString; while (inputFile >> hexString) { int byte = stoi(hexString, nullptr, 16); outputFile << static_cast<char>(byte); } mtx.lock(); cout << "Hex to binary conversion completed!" << endl; mtx.unlock(); } int main() { string inputFileName = "input.bin"; string hexOutputFileName = "output.hex"; string binaryOutputFileName = "output.bin"; thread t1(binaryToHex, inputFileName, hexOutputFileName); thread t2(hexToBinary, hexOutputFileName, binaryOutputFileName); t1.join(); t2.join(); return 0; } ``` 该程序使用了两个函数 `binaryToHex` 和 `hexToBinary` 来实现二进制文件和十六进制文件的相互转换。这两个函数分别将输入文件转换成字符串,然后进行转换,并输出到对应的输出文件中。 在 `main` 函数中,我们创建了两个线程 `t1` 和 `t2` 分别用来执行转换函数。使用 `join` 方法等待线程执行完毕后,程序退出。 注意,在输出结果时,我们使用了一个互斥锁 `mtx` 来保证线程安全输出。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值