C语言 JSON数据格式解析

C语言JSON数据格式解析一、如何用c语言编写与解析json数据格式,这篇主要是使用一个第三方的json库,本人已经上传至csdn,下载链接在下方。 二、json库代码文件下载地址(json.rar内部只有两个文件json.h与json.c) 1.http://download.csdn.net/download/jxyb2012/10234057

大家好,又见面了,我是你们的朋友全栈君。

C语言 JSON数据格式解析

一、如何用c语言编写与解析json数据格式,这篇主要是使用一个第三方的json库,本人已经上传至csdn,下载链接在下方。

 

二、json库代码文件下载地址(json.rar内部只有两个文件json.h与json.c)

 1.http://download.csdn.net/download/jxyb2012/10234057


三、json数据结构(下面程序代码演示如何使用json第三方库编码与解析这么一个json数据)
{

 “uid”:100,
 “username”:”admin”,
 “weaps”:[1,2,3,4,5],
 “member”:
 {

  “uid”:10010,
  “username”:”user”
 }
}


程序代码

//main.c

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "./../3rd/json/json.h"
int main(int argc, char** argv)
{
	//创建root节点
	json_t* root = json_new_object();
	//添加uid与username到root
	json_insert_pair_into_object(root, "uid", json_new_number("100"));
	json_insert_pair_into_object(root, "username", json_new_string("admin"));
	//添加weaps到root
	json_t* json_array_weaps = json_new_array();
	char num_text[16];
	for (int i = 1; i <= 6; i++)
	{
		json_insert_child(json_array_weaps, json_new_number(itoa(i, num_text, 10)));
	}
	json_insert_pair_into_object(root, "weaps", json_array_weaps);
	//添加member到root//添加uid与username到member
	json_t* json_object_member = json_new_object();
	json_insert_pair_into_object(json_object_member, "uid", json_new_number("10010"));
	json_insert_pair_into_object(json_object_member, "username", json_new_string("user"));
	json_insert_pair_into_object(root, "member", json_object_member);
	//json text
	char* json_text;
	//把json tree保存到字符串
	json_tree_to_string(root, &json_text);
	printf("json_text:\n%s\n", json_text);
	free(json_text);
	//保存文件
	FILE* fp = NULL;
	fp = fopen("test.json", "w+");
	if (fp == NULL)
	{
		goto failed;
	}
	json_stream_output(fp, root);
	fflush(fp);
	//释放资源
	fclose(fp);
	json_free_value(&root);
/
	//读取文件
	json_t* document = NULL;
	fp = fopen("test.json", "r");
	if (fp == NULL)
	{
		goto failed;
	}
	//解析文件到json document
	json_stream_parse(fp, &document);
	if (document == NULL)
	{
		goto failed;
	}
	//查找int类型 uid;
	json_t* key = json_find_first_label(document, "uid");
	if (key)
	{
		json_t* value = key->child;
		if (value->type == JSON_NUMBER)
		{
			printf("value is number:%d\n", atoi(value->text));
		}
	}
	//查找string类型 username;
	key = json_find_first_label(document, "username");
	if (key)
	{
		json_t* value = key->child;
		if (value->type == JSON_STRING)
		{
			printf("value is string:%s\n", value->text);
		}
	}
	//查找数组类型 weaps;
	key = json_find_first_label(document, "weaps");
	if (key)
	{
		json_t* value = key->child;
		if (value->type == JSON_ARRAY)
		{
			json_t* child_value = value->child;
			static unsigned int count = 0;
			while (child_value)
			{
				count++;
				if (child_value->type == JSON_NUMBER)
				{
					printf("array value[%d] : %i\n", count, atoi(child_value->text));
				}
				child_value = child_value->next;
			}
		}
	}
	key = json_find_first_label(document, "member");
	if (key)
	{
		json_t* value = key->child;
		if (value->type == JSON_OBJECT)
		{
			json_t* child_key = json_find_first_label(value, "uid");
			if (child_key)
			{
				json_t* child_value = child_key->child;
				if (child_value->type == JSON_NUMBER)
				{
					printf("value is number:%d\n", atoi(child_value->text));
				}
			}
		}
	}
	//释放资源
	fclose(fp);
	json_free_value(&document);
failed:
	system("pause");
	return 0;
}



版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/125723.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • web前端常见面试题总结

    web前端常见面试题总结人生的路上少不了尝试,人人都是打工人,但愿这份面试题可以帮助到你H5有哪些新特性?绘画canvas(随时随地绘制2D图形)、svg(描述XML中的2D图形)元素语义化标签header、ment、content、footer…新增的input类型和属性音频,视频H5地理定位H5拖放H5WebStorage存储H5应用程序缓存H5中的WebworkersH5服务器发送事件(server-sentevent)允许网页获得来自服务器的更新WebSocket在单个TCP连接上进

  • Silverlight 的 Isolated Storage 学习笔记

    Silverlight 的 Isolated Storage 学习笔记

  • 解释afterPropertiesSet

    在spring的bean的生命周期中,实例化->生成对象->属性填充后会进行afterPropertiesSet方法,这个方法可以用在一些特殊情况中,也就是某个对象的某个属性需要经过外界得到,比如说查询数据库等方式,这时候可以用到spring的该特性,只需要实现InitializingBean即可:@Component(“a”)publicclassAimplementsInitializingBean{privateBb;publicA(Bb){

  • 原生JS 扫雷游戏 自动插旗子 自定义雷区大小 雷数可调

    原生JS 扫雷游戏 自动插旗子 自定义雷区大小 雷数可调《扫雷》是Microsoft于1992年附带在Windows3.1操作系统中的单机游戏,它通过点击方格并以出现数字来判断附近雷的数量,将全部地雷做上标记即可胜利。最后在2015年7月发布的Windows10中移除了这个游戏。随机变换雷区颜色,以及其它CSS样式,动画效果全是CSS。点击网页上的元素触发游戏事件打开雷区。如果对于一个方格,其周围未打开的方格恰好全都有雷,那么这些雷将全部自动被标记为小红旗,而玩家只需要一直点击雷区直至雷区全被打开并胜利呈现YOUWIN~没错,全程左键操作。在地

  • java string 转 object_java 类型转换 Object和String互转

    java string 转 object_java 类型转换 Object和String互转Long,Float等Object转为String方法1.toString()使用范围:任何继承Object的类都具有这个方法但是,使用toString()的对象不能为null,否则会抛出异常java.lang.NullPointerException/**返回:该对象的字符串表示*/Integerx=newInteger(100);if(x!=null)System.out.printl…

  • 【Spark】Spark基础教程

    【Spark】Spark基础教程Spark最初由美国加州伯克利大学的AMP实验室于2009年开发,是基于内存计算的大数据并行计算框架,可用于构建大型的、低延迟的数据分析应用程序。Spark特点Spark具有如下几个主要特点:运行速度快:Spark使用先进的DAG(DirectedAcyclicGraph,有向无环图)执行引擎,以支持循环数据流与内存计算,基于内存的执行速度可比HadoopMapReduce快上百倍,…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号