jsoncpp解析文件

背景:先用wireshark抓数据帧,过滤自己需要的之后转换为json文件,然后使用jsoncpp工具解析,获取其中有用的数据,最后把数据写入到文件中,之后分析数据或根据数据画图。

我分析的json文件格式如下,是抓取的usb数据,我需要的是"usb.capdata"键值的数据,由于"23:80:45:80"是两个数据,并且是小端格式,这个数据应该是0823h和0845h,所以我我还需要做一些转换

c 复制代码
{
    "_index": "packets-2024-04-23",
    "_type": "doc",
    "_score": null,
    "_source": {
      "layers": {
        "frame": {
          "frame.section_number": "1",
          "frame.interface_id": "0",
          "frame.interface_id_tree": {
            "frame.interface_name": "\\\\.\\USBPcap1",
            "frame.interface_description": "USBPcap1"
          },
          "frame.encap_type": "152",
          "frame.time": "Apr 23, 2024 17:07:55.755688000 中国标准时间",
          "frame.offset_shift": "0.000000000",
          "frame.time_epoch": "1713863275.755688000",
          "frame.time_delta": "0.000135000",
          "frame.time_delta_displayed": "0.000000000",
          "frame.time_relative": "41.255565000",
          "frame.number": "25",
          "frame.len": "31",
          "frame.cap_len": "31",
          "frame.marked": "0",
          "frame.ignored": "0",
          "frame.protocols": "usb"
        },
        "usb": {
          "usb.src": "1.12.1",
          "usb.addr": "1.12.1",
          "usb.dst": "host",
          "usb.addr": "host",
          "usb.usbpcap_header_len": "27",
          "usb.irp_id": "0xffff9503afc4da20",
          "usb.usbd_status": "0x00000000",
          "usb.function": "0x0009",
          "usb.irp_info": "0x01",
          "usb.irp_info_tree": {
            "usb.irp_info.reserved": "0x00",
            "usb.irp_info.direction": "0x01"
          },
          "usb.bus_id": "1",
          "usb.device_address": "12",
          "usb.endpoint_address": "0x81",
          "usb.endpoint_address_tree": {
            "usb.endpoint_address.direction": "1",
            "usb.endpoint_address.number": "1"
          },
          "usb.transfer_type": "0x03",
          "usb.data_len": "4",
          "usb.request_in": "23",
          "usb.time": "0.000229000",
          "usb.bInterfaceClass": "0x0a"
        },
        "usb.capdata": "23:80:45:80"
      }
    }
  }

代码如下

cpp 复制代码
#include "json/json.h"
#include <fstream>
#include <iostream>
/**
 * $g++ readFromStream.cpp -ljsoncpp -std=c++11 -o readFromStream
 * $./readFromStream
 */
 void readFileJson();
int main(int argc, char* argv[]) {

  readFileJson();
  return EXIT_SUCCESS;
}

void readFileJson() {
  Json::Reader reader;
  Json::Value root;
  string ifilename, ofilename;
  cout << "please input json file name:";
  cin >> ifilename;
  cout << "please input output file name:";
  cin >> ofilename;

  cout << "start~" << endl;
  //从文件中读取,保证当前文件有json文件
  ifstream in(ifilename, ios::binary);

  if (!in.is_open()) {
    cout << "Error opening file\n";
    return;
  }

  if (reader.parse(in, root)) {

    string usb_capdata;	//usb原数据
    ofstream rf;		//数据输出句柄
    const char* c1; // string转换数组原数据
    char c2[5];     //截取翻转之后数据
    int num;        //转换为十进制
    int strsize = root.size();	//一个数据帧是一组数据,这个也表示有多少个数据帧
    rf.open(ofilename, ios::binary);	//如果没有文件则创建
    for (int i = 0; i < strsize; i++) {
      usb_capdata = root[i]["_source"]["layers"]["usb.capdata"].asString();
      c1 = usb_capdata.c_str(); //string转换为char型
      //23:80:45:80
      //第一个数据
      c2[0] = c1[3];
      c2[1] = c1[4];
      c2[2] = c1[0];
      c2[3] = c1[1];
      c2[4] = '\0';
      num = strtol(c2, NULL, 16); //转换为十进制
      rf << num << ","; //写入文件

	//第二个数据
      c2[0] = c1[9];
      c2[1] = c1[10];
      c2[2] = c1[6];
      c2[3] = c1[7];
      c2[4] = '\0';
      num = strtol(c2, NULL, 16);
      rf << num << endl;
    }
    rf.close(); //关闭数据输出文件
    cout << "Reading Complete!" << endl;
  } else {
    cout << "parse error\n" << endl;
  }
  in.close(); //关闭数据输入文件
  system("pause");
}
相关推荐
工业3D_大熊43 分钟前
3D可视化引擎HOOPS Luminate场景图详解:形状的创建、销毁与管理
java·c++·3d·docker·c#·制造·数据可视化
暮色_年华1 小时前
Modern Effective C++ Item 11:优先考虑使用deleted函数而非使用未定义的私有声明
c++
流星白龙1 小时前
【C++习题】10.反转字符串中的单词 lll
开发语言·c++
Smile丶凉轩1 小时前
微服务即时通讯系统的实现(服务端)----(1)
c++·git·微服务·github
萝卜兽编程2 小时前
优先级队列
c++·算法
珹洺3 小时前
C语言数据结构——详细讲解 双链表
c语言·开发语言·网络·数据结构·c++·算法·leetcode
孙同学要努力3 小时前
C++知识整理day1——前置基础知识整理(命名空间、输入输出、函数重载、引用)
开发语言·c++
沐泽Mu3 小时前
嵌入式学习-C嘎嘎-Day05
开发语言·c++·学习
几窗花鸢3 小时前
力扣面试经典 150(下)
数据结构·c++·算法·leetcode
Beau_Will4 小时前
数据结构-树状数组专题(1)
数据结构·c++·算法