中文 | English
DanKeJson 是一个.Net平台上的精简小巧的 JSON 类库,用于处理 JSON (JavaScript Object Notation) 字符串之间的转换。
DanKeJson 为了方便开发使用,添加了许多特性,包括但不限于:
- 以 JsonData 类传递数据
- 隐式转换操作符
- 允许数组、对象的多余逗号
- 字符串允许使用单引号
- 允许注释*
- 将未经定义的值转换为null
- 键名允许不使用引号
更多特性相关内容请看:Hello DanKeJson
*: 当前版本的 DanKeJson解析器部分中尚未支持注释,注释支持由CommentParser类通过正则表达式忽略,可能会严重影响解析性能。
反序列化部分:
- 解析器支持单行注释与多行注释
- 支持日期格式
- 支持更多 .net 版本
- 键名无需引号
- 字符串支持单引号
- 允许数组、对象的多余逗号
序列化部分:
- 支持序列化为JSON5格式
杂项:
- 支持序列化反序列化MessagePack
- 使用Simd技术加快反序列化
Windows
./publish.bat
NuGet\Install-Package DanKeJson -Version 1.3.3
dotnet add package DanKeJson --version 1.3.3
<PackageReference Include="DanKeJson" Version="1.3.3" />
paket add DanKeJson --version 1.3.3
#r "nuget: DanKeJson, 1.3.3"
// Install DanKeJson as a Cake Addin
#addin nuget:?package=DanKeJson&version=1.3.3
// Install DanKeJson as a Cake Tool
#tool nuget:?package=DanKeJson&version=1.3.3
或者,只需复制目录./publish/DanKeJson
到您自己项目的源代码树中,并将其与您的开发环境集成。
DanKeJson 目前支持的平台:
- .NET 8.0
- .NET 7.0
- .NET 6.0
- .NET 5.0
- .NET Standard 2.1
- .NETcoreapp3.1
- .NETcoreapp3.0
- Godot (.Net)
- Mono
- Unity
MIT License
Copyright (c) 2023 - present DanKe
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
本项目使用 Rider 开发,感谢 JetBrains 对 DanKeJson 的支持。
本项目所有Markdown文件使用 Hypora 书写。