C++ 已知MBUFFERSYSBuffer写入文件的数据为----device-stream-boundary-- Content-Type: application/json Content-Length: 75 X-If-Encrypt: 0 {"type":"response", "seq":0, "params":{"error_code":0, "session_id":"157"}} ----device-stream-boundary-- Content-Type: image/avc X-If-Encrypt: 0 Content-Length: 4518 X-Session-Id: 157 44224124424 ----device-stream-boundary-- Content-Type: application/json Content-Length: 85 X-Session-Id: 157 X-If-Encrypt: 0 {"type":"notification", "params":{"event_type":"stream_status", "status":"finished"}} 那么我只想写入44224124424到文件中怎么办
时间: 2023-07-19 18:40:32 浏览: 94
C++文件读取,写入
以下是一个C++示例代码,您可以根据自己的需要进行修改:
```c++
#include <fstream>
#include <iostream>
#include <string>
int main()
{
std::ifstream ifs("your_file_path");
std::string data((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
// 查找需要的数据
std::size_t start_index = data.find("Content-Type: image/avc");
std::size_t end_index = data.find("----device-stream-boundary", start_index);
std::string target_data = data.substr(start_index, end_index - start_index);
// 获取目标数据
std::size_t target_index = target_data.find("\n\n") + 2;
std::string target = target_data.substr(target_index);
// 将目标数据写入到文件中
std::ofstream ofs("your_output_file_path");
ofs << target;
return 0;
}
```
该代码将打开MBUFFERSYSBuffer数据所在的文件,并查找包含需要的数据的字符串。然后,它从找到的字符串中提取出目标数据,并将其写入到指定的输出文件中。注意,此示例仅适用于给定数据的特定格式,如果数据格式发生更改,代码可能需要进行修改。
阅读全文