LHZ.FastJson
1.7.2
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.0
This package targets .NET Framework 4.0. The package is compatible with this framework or higher.
dotnet add package LHZ.FastJson --version 1.7.2
NuGet\Install-Package LHZ.FastJson -Version 1.7.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LHZ.FastJson" Version="1.7.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LHZ.FastJson --version 1.7.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: LHZ.FastJson, 1.7.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LHZ.FastJson as a Cake Addin #addin nuget:?package=LHZ.FastJson&version=1.7.2 // Install LHZ.FastJson as a Cake Tool #tool nuget:?package=LHZ.FastJson&version=1.7.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
LHZ.FastJson
轻巧便利的Json序列化和反序列化工具 <br/> Lightweight and convenient tool for JSON serialization and deserialization
序列化性能
LHZ.FastJson重构了序列化方法,拥有极高的序列化性能,下表为LHZ.FastJson、NewtonJson和System.Text.Json的序列化性能测试
BenchmarkDotNet=v0.13.1, OS=Windows 10.0.19044.1706 (21H2)
Intel Core i7-9700K CPU 3.60GHz (Coffee Lake), 1 CPU, 8 logical and 8 physical cores
.NET SDK=6.0.201
[Host] : .NET 6.0.3 (6.0.322.12309), X64 RyuJIT
DefaultJob : .NET 6.0.3 (6.0.322.12309), X64 RyuJIT
Method | Mean | Error | StdDev |
---|---|---|---|
LHZ.FastJson | 7.014 μs | 0.0298 μs | 0.0279 μs |
NewtonJson | 18.943 μs | 0.1786 μs | 0.1671 μs |
System.Text.Json | 10.410 μs | 0.0499 μs | 0.0467 μs |
反序列化性能
LHZ.FastJson重构了反序列化方法,相比1.6.0之前的版本有接近2倍的反序列化性能提升
BenchmarkDotNet=v0.13.1, OS=Windows 10.0.19044.1889 (21H2)
Intel Core i7-9700K CPU 3.60GHz (Coffee Lake), 1 CPU, 8 logical and 8 physical cores
.NET SDK=6.0.302
[Host] : .NET 6.0.7 (6.0.722.32202), X64 RyuJIT
DefaultJob : .NET 6.0.7 (6.0.722.32202), X64 RyuJIT
Method | Mean | Error | StdDev |
---|---|---|---|
LHZFastJson v1.6.0 | 43.91 ms | 0.181 ms | 0.170 ms |
LHZFastJson v1.5.2 | 85.18 ms | 0.301 ms | 0.282 ms |
如何安装
下面展示不同的安装方法,以安装LHZ.FastJson 1.6.1版本为例
Package Manager
Install-Package LHZ.FastJson -Version 1.6.1
.NET CLI
dotnet add package LHZ.FastJson --Version 1.6.1
package-reference
<PackageReference Include="LHZ.FastJson" Version="1.6.1" />
Paket CLI
paket add LHZ.FastJson --version 1.6.1
如何使用
使用LHZ.FastJson进行序列化
序列化代码示例
Student student = new Student
{
NO = 1,
Name = "lhz",
Age = 18,
Brithday = new DateTime(2002, 1, 1)
};
string jsonStr = LHZ.FastJson.JsonConvert.Serialize(student);
Console.WriteLine(jsonStr);
运行结果
PS C:\Users\admin\source\repos\LHZ.FastJson\LHZ.FastJson.Test> dotnet run
{"NO":1,"Name":"lhz","Age":18,"Brithday":"2000/1/1 0:00:00"}
使用LHZ.FastJson进行反序列化
反序列化代码示例
string str = "{\"NO\":1,\"Name\":\"lhz\",\"Age\":18,\"Brithday\":\"2000/1/1 0:00:00\"}";
Student student = JsonConvert.Deserialize<Student>(str);
Console.WriteLine("NO:{0},Name:{1},Age:{2},Brithday:{3}", student.NO, student.Name, student.Age, student.Brithday.ToString("yyyy-MM-dd"));
运行结果
PS C:\Users\admin\source\repos\LHZ.FastJson\LHZ.FastJson.Test> dotnet run
NO:1,Name:lhz,Age:18,Brithday:2000-1-1
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 is compatible. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETStandard 2.0
- No dependencies.
-
net5.0
- No dependencies.
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.7.2 | 105 | 9/27/2024 |
1.7.1 | 80 | 9/22/2024 |
1.6.0 | 467 | 8/20/2022 |
1.5.2 | 425 | 6/13/2022 |
1.5.1 | 432 | 6/12/2022 |
1.5.0 | 425 | 6/12/2022 |
1.4.2 | 415 | 8/19/2021 |
1.4.0 | 368 | 8/9/2021 |
1.3.6 | 401 | 6/7/2021 |
1.3.4 | 512 | 9/15/2020 |
1.3.3 | 460 | 8/11/2020 |
1.3.2 | 520 | 8/1/2020 |
1.3.1 | 521 | 8/1/2020 |
1.2.4 | 494 | 7/26/2020 |
1.2.3 | 549 | 7/19/2020 |
1.2.2 | 493 | 7/18/2020 |
1.2.1 | 536 | 7/18/2020 |
1.1.1 | 501 | 7/14/2020 |
添加了自定义属性名称