# JSON **Repository Path**: Naezaer/JSON ## Basic Information - **Project Name**: JSON - **Description**: JSON parser based on Antlr4 in C++ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-08-11 - **Last Updated**: 2025-08-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # JSON Parser ## 项目简介 基于Antlr4的JSON解析器,可以把JSON转化成C++数据(还在开发中)。 ## 项目运行 ```bash # 进入项目目录 cd JSON # 编译项目 mkdir build && cd build cmake .. make # 运行项目(项目还在开发中,这里仅测试) # 退回到项目根目录 cd .. # 复制可执行文件 cp ./build/JSON ./tests/ # 进入测试文件夹 cd ./tests # 运行项目 ./JSON ./xxx.json ```