Swifter.Json 是由本人编写的高性能且多功能的 Json 解析库。下图是 Swifter.Json 与 .Net 平台上的其他 Json 库性能对比:

  

  在 Swifter.Json 近期更新的 API 中增加了直接构建 JSON 和直接解析 JSON 的方法。下面演示这两个方法如何使用:

  1:使用 JsonWriter 直接生成 Json 文档:

using Swifter.Json;
using Swifter.Tools;
using System; public class Demo
{
public static void Main()
{
var jsonWriter = JsonFormatter.CreateJsonWriter(); jsonWriter.WriteBeginObject(); jsonWriter.WritePropertyName("Id");
jsonWriter.WriteInt32(); jsonWriter.WritePropertyName("Name");
jsonWriter.WriteString("Dogwei"); jsonWriter.WriteEndObject(); Console.WriteLine(jsonWriter.HGCache.ToStringEx()); /**
* Output : {"Id":123,"Name":"Dogwei"}
*/
}
}

  注意:使用 JsonWriter 时应将 jsonWriter 保存起来,重复使用,这样才能将性能最大化。

  2:使用 JsonReader 直接遍历 Json 文档:

using Swifter.Json;
using System;
using System.IO; public class Demo
{
public static void Main()
{
using var textReader = new StringReader("{\"Id\":123,\"Name\":\"Dogwei\"}"); var jsonReader = JsonFormatter.CreateJsonReader(textReader); if (jsonReader.TryReadBeginObject())
{
while (!jsonReader.TryReadEndObject())
{
var name = jsonReader.ReadPropertyName(); switch (name)
{
case "Id":
Console.WriteLine($"{name}: {jsonReader.ReadInt32()}");
break;
case "Name":
Console.WriteLine($"{name}: {jsonReader.ReadString()}");
break;
default:
Console.WriteLine($"{name}: {jsonReader.DirectRead()}");
break;
}
}
} /**
* Output :
* Id: 123
* Name: Dogwei
*/
}
}

  3:更简单的遍历 Json 文档:

using Swifter.Json;
using System;
using System.IO; public class Demo
{
public static void Main()
{
using var textReader = new StringReader("[{\"Id\":1,\"Name\":\"Dogwei\"},{\"Id\":2,\"Name\":\"ChenXinwei\"},{\"Id\":3,\"Name\":\"Swifter.Json\"}]"); var jsonReader = JsonFormatter.CreateJsonReader(textReader); foreach (var item in jsonReader.ReadArray())
{
foreach (var pair in item.ReadObject())
{
var name = pair.Key;
var value = pair.Value.DirectRead(); Console.WriteLine($"{name} : {value}");
}
} /**
* Output :
* Id : 1
* Name : Dogwei
* Id : 2
* Name : ChenXinwei
* Id : 3
* Name : Swifter.Json
*/
}
}

  注意:JsonReader 是原始提供的是原始解析 Json 的方法,它性能极快,也正因此,它每个读取方法都会偏移游标,不读取就不偏移,解析 Json 时所有的 '值' 都必须读且只读一次!如上例:如果 pair.Value.DirectRead() 调用了两次,或者一次都没调用,那么就会解析出错!

  下例做一下简单的性能对比:

using Newtonsoft.Json;
using Swifter.Json;
using System;
using System.Diagnostics;
using System.IO; public class Demo
{
public static void Main()
{
var swifterWriter = JsonFormatter.CreateJsonWriter(); var newtonsoftStringWriter = new StringWriter();
var newtonsoftWriter = new JsonTextWriter(newtonsoftStringWriter); while (true)
{
var stopwatch = Stopwatch.StartNew(); for (int i = ; i < ; i++)
{
newtonsoftWriter.WriteStartObject(); newtonsoftWriter.WritePropertyName("Id");
newtonsoftWriter.WriteValue(); newtonsoftWriter.WritePropertyName("Name");
newtonsoftWriter.WriteValue("Dogwei"); newtonsoftWriter.WriteEndObject(); newtonsoftStringWriter.GetStringBuilder().Length = ;
} Console.WriteLine($"Newtonsoft.Json : {stopwatch.ElapsedMilliseconds}"); stopwatch = Stopwatch.StartNew(); for (int i = ; i < ; i++)
{
swifterWriter.WriteBeginObject(); swifterWriter.WritePropertyName("Id");
swifterWriter.WriteInt32(); swifterWriter.WritePropertyName("Name");
swifterWriter.WriteString("Dogwei"); swifterWriter.WriteEndObject(); swifterWriter.Clear();
} Console.WriteLine($"Swifter.Json : {stopwatch.ElapsedMilliseconds}"); Console.ReadKey();
} /**
* Output:
* Newtonsoft.Json : 197
* Swifter.Json : 64
*/
}
}
using Newtonsoft.Json;
using Swifter.Json;
using System;
using System.Diagnostics;
using System.IO; public class Demo
{
public static void Main()
{
while (true)
{
var stopwatch = Stopwatch.StartNew(); for (int i = ; i < ; i++)
{
var jsonReader = new JsonTextReader(new StringReader("{\"Id\":123,\"Name\":\"Dogwei\"}")); while (jsonReader.Read())
{
if (jsonReader.TokenType == JsonToken.PropertyName)
{
var name = (string)jsonReader.Value; switch (name)
{
case "Id":
jsonReader.ReadAsInt32();
break;
case "Name":
jsonReader.ReadAsString();
break;
default:
jsonReader.Skip();
break;
}
}
}
} Console.WriteLine($"Newtonsoft.Json : {stopwatch.ElapsedMilliseconds}"); stopwatch = Stopwatch.StartNew(); for (int i = ; i < ; i++)
{
var jsonReader = JsonFormatter.CreateJsonReader(new StringReader("{\"Id\":123,\"Name\":\"Dogwei\"}")); if (jsonReader.TryReadBeginObject())
{
while (!jsonReader.TryReadEndObject())
{
var name = jsonReader.ReadPropertyName(); switch (name)
{
case "Id":
jsonReader.ReadInt32();
break;
case "Name":
jsonReader.ReadString();
break;
default:
jsonReader.SkipValue();
break;
}
}
}
} Console.WriteLine($"Swifter.Json : {stopwatch.ElapsedMilliseconds}"); Console.ReadKey();
} /**
* Output:
* Newtonsoft.Json : 759
* Swifter.Json : 161
*/
}
}

  特别强调:这两种方式都是提供给有特别需求的用户,普通用户不建议使用,因为使用门槛较高,不利于维护!个人建议是定义模型,然后不管是序列化和反序列化都使用模型!这样在保证性能的情况下,使用也变得简单,易于维护。

  最后附上 Swifter.Json 的开源地址:https://github.com/Dogwei/Swifter.Json 希望大家支持一下。

C#.Net 使用 JsonReader/JsonWriter 高性能解析/生成 Json 文档的更多相关文章

  1. .NET Core和Swagger 生成 Api 文档

    测试/生产环境的BUG 这里更新一下在本地调试正常,在INT/PROD上抛错,错误信息为: */**/*.xml(Swagger json file) 文件找不到,在startup 里builder ...

  2. .NET Core和Swagger 生成 Api 文档转

    阅读目录 1.引用 2.打开startup.cs文件 3.设置XML注释 4.运行结果 5.主要问题的解决办法 6.可以自定义UI 前言 最近写了好多Web api, 老大说太乱了,要整理一下,使用S ...

  3. DOM生成XML文档与解析XML文档(JUNIT测试)

    package cn.liuning.test; import java.io.File; import java.io.IOException; import javax.xml.parsers.D ...

  4. SAX解析和生成XML文档

    原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本人声明.否则将追究法律责任. 作者: 永恒の_☆ 地址: http://blog.csdn.net/chenghui031 ...

  5. PHP获取cookie、Token、模拟登录、抓取数据、解析生成json

    本文介绍使用PHP获取cookie,获取Token.以及模拟登录.然后抓取数据.最后解析生成json的的过程. 0. 设置Cookie路径 set_time_limit(0); //使用的cookie ...

  6. 利用Java动态生成 PDF 文档

    利用Java动态生成 PDF 文档,则需要开源的API.首先我们先想象需求,在企业应用中,客户会提出一些复杂的需求,比如会针对具体的业务,构建比较典型的具备文档性质的内容,一般会导出PDF进行存档.那 ...

  7. WebAPI使用多个xml文件生成帮助文档

    一.前言 上篇有提到在WebAPI项目内,通过在Nuget里安装(Microsoft.AspNet.WebApi.HelpPage)可以根据注释生成帮助文档,查看代码实现会发现是基于解析项目生成的xm ...

  8. POI生成WORD文档

    h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h ...

  9. PHP的学习--使用PhpDocumentor 2生成API文档

    官网地址:http://www.phpdoc.org/ 项目地址:https://github.com/phpDocumentor/phpDocumentor2 phpDocumentor 2是一个可 ...

随机推荐

  1. COMP2521: Assignment

    COMP2521: Assignment 2Social Network AnalysisA notice on the class web page will be posted after eac ...

  2. Asp.net ------ 开发web 网站

    HTML文件变成可以动态界面,经常会变成后缀有: 使用 .NET 开发的展示界面后缀是 .aspx 使用java   开发的展示界面后缀是  .jsp 使用php  开发的展示界面后缀是 .php 本 ...

  3. c#汉字转拼音首字母全拼支持多音字

    1.首先在NuGet安装pingyinConverter 2.下载-安装-引用ChineseChar.dll到项目中 官网了解:http://www.microsoft.com/zh-cn/downl ...

  4. Android方法数超出限定的问题(multiDex,jumboMode)

    在Android项目开发中,项目代码量过大或通过引入很多jar导致代码量急剧增加,会出现错误: android.dex.DexIndexOverflowException: Cannot merge ...

  5. 实现拖拽列表-微信小程序

    之前在网上搜索拖拽列表的实现时,发现了有好多的方法都是基于像素位置的计算实现的,这种方法要求列表元素的大小以及列表的位置有着非常严格的要求,修改和拓展起来非常的麻烦.于是我自己动手实现了一个基于页面元 ...

  6. vue-品牌管理案例-指令和过滤器

    过滤器的基本使用 定义一个过滤器 <div id="app"> <p>{{ msg | msgFormat('疯狂+1', '123') | test }} ...

  7. 有关idea与mac的好用链接

    idea集成maven:https://www.cnblogs.com/daojiao/p/10270489.html idea集成tomcat:https://www.cnblogs.com/guo ...

  8. 2-2-for循环

    重复执行某些代码 每次执行的时候有个数字在变化 常用格式 <script> for(var i=0; i<3; i++){alert(i); } </script> 1) ...

  9. php 的定界符 <<<eof

    PHP是一个Web编程语言,在编程过程中难免会遇到用echo来输出大段的html和javascript脚本的情况,如果用传统的输出方法 ——按字符串输出的话,肯定要有大量的转义符来对字符串中的引号等特 ...

  10. iOS----------提交被拒

    Hello, Thank you for resubmitting your app for review. Guideline 2.5.1 - Performance - Software Requ ...