Microsoft是否提供任何库以在C#中使用JSON?如果没有,你推荐什么开源库?
答案 0 :(得分:77)
答案 1 :(得分:19)
您还应该尝试我的ServiceStack JsonSerializer - 它是目前based on the benchmarks of the leading JSON serializers中速度最快的.NET JSON序列化程序,并支持序列化任何POCO类型,DataContracts,列表/词典,接口,继承,后期绑定对象包括匿名类型等。
基本示例
var customer = new Customer { Name="Joe Bloggs", Age=31 };
var json = customer.ToJson();
var fromJson = json.FromJson<Customer>();
注意:如果性能对您不重要,请仅使用Microsofts JavaScriptSerializer,因为我不得不将其从基准测试中删除,因为它比其他JSON序列化器慢了 40x-100x 。 / p>
答案 2 :(得分:14)
.net框架通过JavaScriptSerializer支持JSON。这是一个很好的例子,可以帮助您入门。
using System.Collections.Generic;
using System.Web.Script.Serialization;
namespace GoogleTranslator.GoogleJSON
{
public class FooTest
{
public void Test()
{
const string json = @"{
""DisplayFieldName"" : ""ObjectName"",
""FieldAliases"" : {
""ObjectName"" : ""ObjectName"",
""ObjectType"" : ""ObjectType""
},
""PositionType"" : ""Point"",
""Reference"" : {
""Id"" : 1111
},
""Objects"" : [
{
""Attributes"" : {
""ObjectName"" : ""test name"",
""ObjectType"" : ""test type""
},
""Position"" :
{
""X"" : 5,
""Y"" : 7
}
}
]
}";
var ser = new JavaScriptSerializer();
ser.Deserialize<Foo>(json);
}
}
public class Foo
{
public Foo() { Objects = new List<SubObject>(); }
public string DisplayFieldName { get; set; }
public NameTypePair FieldAliases { get; set; }
public PositionType PositionType { get; set; }
public Ref Reference { get; set; }
public List<SubObject> Objects { get; set; }
}
public class NameTypePair
{
public string ObjectName { get; set; }
public string ObjectType { get; set; }
}
public enum PositionType { None, Point }
public class Ref
{
public int Id { get; set; }
}
public class SubObject
{
public NameTypePair Attributes { get; set; }
public Position Position { get; set; }
}
public class Position
{
public int X { get; set; }
public int Y { get; set; }
}
}
答案 3 :(得分:7)
答案 4 :(得分:5)
答案 5 :(得分:3)
看一下system.web.script.serialization命名空间(我想你需要.Net 3.5)
答案 6 :(得分:2)
为这个问题提供更新的答案:是的,.Net包括自版本3.5到System.Runtime.Serialization.Json命名空间的JSON seriliazer / deserliazer: http://msdn.microsoft.com/en-us/library/system.runtime.serialization.json(v=vs.110).aspx
但是根据JSON.Net的创建者的说法,.Net Framework与他的开源实现相比要慢得多。
答案 7 :(得分:1)
要回答您的第一个问题,Microsoft确实发布了DataContractJsonSerializer:请参阅msdn How to: Serialize and Deserialize JSON Data
答案 8 :(得分:0)
尝试Vici项目,Vici Parser。它包括一个JSON解析器/ tokeniser。它工作得很好,我们将它与MVC框架一起使用。
更多信息:http://viciproject.com/wiki/projects/parser/home
我忘了说它是开源的,所以如果你愿意,你可以随时查看代码。