C++ 读取【指定字符串头】的.DAT数据文件,并保存到txt文件中(绝对正确)

比如,.DAT文件的格式如下:

 我想读取数据流头为 $PSNSR 一行的数据,其他的数据都不要!

代码如下:

#include <iostream>
#include <iomanip>
#include <string.h>
#include <fstream>
#include <math.h>
#include <string>
#include<sstream>
#include <stdlib.h>
#include <cstring>




using namespace std;   

// DAT文件所在路径
std::string true_data_Path = "/home/jht/VIns_Code/DAT2bin/output/20211122234358.dat";   



int main()
{
  
    // 保存文件路径
    ifstream infile("/home/jht/VIns_Code/DAT2bin/output/20211122234358.dat");  

    string temp;
    if (!infile.is_open())
    {  
        cout<<"can not open the file \n"<<endl;
        return -1;
    }
    
    std::ofstream Openfile("/home/jht/VIns_Code/DAT2bin/output/20211122234358_sensor_data.txt");
    
      while(1) 
     {  
        getline(infile,temp) ;
        
        if(! temp.find("$PSNSR") )  // 判断
        {
           cout<<temp<<"\n";  // 打印
           
           Openfile<<temp;    // 保存数据
           Openfile<<"\n";    // 换行(重要)
        }
    }
    
    infile.close();
    return 0;  
}


 

话外:ASCII转成16进制的MATLAB 程序

clear
clc
close all


fp=fopen('sensor_data.txt','rb');  
data1=fread(fp); 

fp1=fopen('PSNSR.bin','w');  
fwrite(fp1,data1,'uint8')
fclose(fp1);

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

他人是一面镜子,保持谦虚的态度

你的鼓励是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值