JSON.NET JsonConvert vs .NET JavaScriptSerializer(JSON.NET JsonConvert 与 .NET JavaScriptSerializer)
问题描述
在 .NET 中对 JSON 进行编码和解码时,最好使用什么?我已经尝试了这两种方法,到目前为止,JsonConvert 似乎做得很好.我过去成功使用过 JavaScriptSerializer,但最近遇到了一些问题.使用 JSON.NET 比使用 .NET 类更好吗?
What is better to use when it comes to encoding and decoding of JSON in .NET? I have tried both and upto this point JsonConvert seems to be doing a good job. I have used JavaScriptSerializer in the past successfully but have had some problems in the recent past with it. Is it better to use JSON.NET than the .NET class?
使用适当的库编码/解码 json 的首选函数是什么?我使用来自 JSON.NET 的 SerializeObject/DeSerializeObject 和来自 .NET 的 Serialize/DeSerialize.
What are the preferred functions for encoding/decoding json using the appropriate library? I use SerializeObject/DeSerializeObject from JSON.NET and Serialize/DeSerialize from .NET.
谢谢
推荐答案
我认为 这正是您正在寻找的比较.
I think this is exactly the kind of comparison you are looking for.
它基本上说 JSON.Net 更好,因为它除其他外......
It basically says that JSON.Net is better because it among other things...
- 更快
- 支持 LINQ to JSON
- 可以将 JSON 与XML
- Is faster
- Has LINQ to JSON support
- Can convert JSON to and from XML
在我看来,对于内置序列化程序来说,唯一的积极因素(而且是一个小积极因素)是不需要管理额外的外部依赖项.
In my opinion the only positive, (and it is a small positive), I can see for the built-in serializer is that there is no extra external dependency to manage.
编辑:Codeplex 有一天会关闭,因此您可以在这里 同样,在页面上搜索功能比较"即可.
Edit: Codeplex is shutting down one day so you can find the comparison here as well, just search for "Feature comparison" on the page.
这篇关于JSON.NET JsonConvert 与 .NET JavaScriptSerializer的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:JSON.NET JsonConvert 与 .NET JavaScriptSerializer
- 带问号的 nvarchar 列结果 2022-01-01
- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 使用 rss + c# 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01