如何在C#中创建JSON字符串

时间:2009-06-29 00:25:55

标签: c# asp.net json

我刚刚使用XmlWriter创建了一些XML,以便在HTTP响应中发回。你将如何创建一个JSON字符串。我假设您只使用stringbuilder来构建JSON字符串,并将响应格式化为JSON?

15 个答案:

答案 0 :(得分:337)

使用Newtonsoft.Json可让您更轻松:

Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Price = 3.99M;
product.Sizes = new string[] { "Small", "Medium", "Large" };

string json = JsonConvert.SerializeObject(product);

文档: Serializing and Deserializing JSON

答案 1 :(得分:233)

您可以使用JavaScriptSerializer class,检查this article以构建有用的扩展方法。

文章代码:

namespace ExtensionMethods
{
    public static class JSONHelper
    {
        public static string ToJSON(this object obj)
        {
            JavaScriptSerializer serializer = new JavaScriptSerializer();
            return serializer.Serialize(obj);
        }

        public static string ToJSON(this object obj, int recursionDepth)
        {
            JavaScriptSerializer serializer = new JavaScriptSerializer();
            serializer.RecursionLimit = recursionDepth;
            return serializer.Serialize(obj);
        }
    }
}

用法:

using ExtensionMethods;

...

List<Person> people = new List<Person>{
                   new Person{ID = 1, FirstName = "Scott", LastName = "Gurthie"},
                   new Person{ID = 2, FirstName = "Bill", LastName = "Gates"}
                   };


string jsonString = people.ToJSON();

答案 2 :(得分:18)

这个库非常适合来自C#

的JSON

http://james.newtonking.com/pages/json-net.aspx

答案 3 :(得分:12)

此代码段使用.NET 3.5中System.Runtime.Serialization.Json的DataContractJsonSerializer。

public static string ToJson<T>(/* this */ T value, Encoding encoding)
{
    var serializer = new DataContractJsonSerializer(typeof(T));

    using (var stream = new MemoryStream())
    {
        using (var writer = JsonReaderWriterFactory.CreateJsonWriter(stream, encoding))
        {
            serializer.WriteObject(writer, value);
        }

        return encoding.GetString(stream.ToArray());
    }
}

答案 4 :(得分:7)

查看http://www.codeplex.com/json/的json-net.aspx项目。为什么重新发明轮子?

答案 5 :(得分:7)

您现在也可以尝试我的ServiceStack JsonSerializer fastest .NET JSON serializer。它支持序列化DataContracts,任何POCO类型,接口,包含匿名类型的后期绑定对象等。

基本示例

var customer = new Customer { Name="Joe Bloggs", Age=31 };
var json = JsonSerializer.SerializeToString(customer);
var fromJson = JsonSerializer.DeserializeFromString<Customer>(json); 

注意:如果性能对您不重要,请仅使用Microsofts JavaScriptSerializer,因为我不得不将其从基准测试中删除,因为它比其他JSON序列化器慢了 40x-100x 。 / p>

答案 6 :(得分:6)

如果您需要复杂的结果(嵌入式),请创建自己的结构:

class templateRequest
{
    public String[] registration_ids;
    public Data data;
    public class Data
    {
        public String message;
        public String tickerText;
        public String contentTitle;
        public Data(String message, String tickerText, string contentTitle)
        {
            this.message = message;
            this.tickerText = tickerText;
            this.contentTitle = contentTitle;
        }                
    };
}

然后您可以通过调用

获取JSON字符串
List<String> ids = new List<string>() { "id1", "id2" };
templateRequest request = new templeteRequest();
request.registration_ids = ids.ToArray();
request.data = new templateRequest.Data("Your message", "Your ticker", "Your content");

string json = new JavaScriptSerializer().Serialize(request);

结果如下:

json = "{\"registration_ids\":[\"id1\",\"id2\"],\"data\":{\"message\":\"Your message\",\"tickerText\":\"Your ticket\",\"contentTitle\":\"Your content\"}}"

希望它有所帮助!

答案 7 :(得分:5)

如果你不能或不想使用两个内置的JSON序列化器(JavaScriptSerializerDataContractJsonSerializer),你可以试试JsonExSerializer库 - 我在一些项目和工作得很好。

答案 8 :(得分:2)

如果您正在尝试创建Web服务以通过JSON将数据提供给网页,请考虑使用ASP.NET Ajax工具包:

http://www.asp.net/learn/ajax/tutorial-05-cs.aspx

它会自动将通过webservice提供的对象转换为json,并创建可用于连接到它的代理类。

答案 9 :(得分:1)

DataContractJSONSerializer将为您完成一切,与XMLSerializer一样简单。在网络应用程序中使用它很简单。如果您使用的是WCF,则可以使用属性指定其使用。 DataContractSerializer系列也非常快。

答案 10 :(得分:1)

我发现你根本不需要序列化器。如果将对象作为List返回。 让我举个例子。

在我们的asmx中,我们使用传递的变量获取数据

// return data
[WebMethod(CacheDuration = 180)]
public List<latlon> GetData(int id) 
{
    var data = from p in db.property 
               where p.id == id 
               select new latlon
               {
                   lat = p.lat,
                   lon = p.lon

               };
    return data.ToList();
}

public class latlon
{
    public string lat { get; set; }
    public string lon { get; set; }
}

然后使用jquery访问服务,传递该变量。

// get latlon
function getlatlon(propertyid) {
var mydata;

$.ajax({
    url: "getData.asmx/GetLatLon",
    type: "POST",
    data: "{'id': '" + propertyid + "'}",
    async: false,
    contentType: "application/json;",
    dataType: "json",
    success: function (data, textStatus, jqXHR) { //
        mydata = data;
    },
    error: function (xmlHttpRequest, textStatus, errorThrown) {
        console.log(xmlHttpRequest.responseText);
        console.log(textStatus);
        console.log(errorThrown);
    }
});
return mydata;
}

// call the function with your data
latlondata = getlatlon(id);

我们得到了回应。

{"d":[{"__type":"MapData+latlon","lat":"40.7031420","lon":"-80.6047970}]}

答案 11 :(得分:1)

编码使用

JSON数组的简单对象EncodeJsObjectArray()

public class dummyObject
{
    public string fake { get; set; }
    public int id { get; set; }

    public dummyObject()
    {
        fake = "dummy";
        id = 5;
    }

    public override string ToString()
    {
        StringBuilder sb = new StringBuilder();
        sb.Append('[');
        sb.Append(id);
        sb.Append(',');
        sb.Append(JSONEncoders.EncodeJsString(fake));
        sb.Append(']');

        return sb.ToString();
    }
}

dummyObject[] dummys = new dummyObject[2];
dummys[0] = new dummyObject();
dummys[1] = new dummyObject();

dummys[0].fake = "mike";
dummys[0].id = 29;

string result = JSONEncoders.EncodeJsObjectArray(dummys);

结果: [29, “迈克”],[5, “伪”]]

漂亮的用法

Pretty print JSON Array PrettyPrintJson()字符串扩展方法

string input = "[14,4,[14,\"data\"],[[5,\"10.186.122.15\"],[6,\"10.186.122.16\"]]]";
string result = input.PrettyPrintJson();

结果是:

[
   14,
   4,
   [
      14,
      "data"
   ],
   [
      [
         5,
         "10.186.122.15"
      ],
      [
         6,
         "10.186.122.16"
      ]
   ]
]

答案 12 :(得分:0)

Simlpe使用 Newtonsoft.Json Newtonsoft.Json.Linq 库。

        //Create my object
        var my_jsondata = new
        {
            Host = @"sftp.myhost.gr",
            UserName = "my_username",
            Password = "my_password",
            SourceDir = "/export/zip/mypath/",
            FileName = "my_file.zip"
        };

        //Tranform it to Json object
        string json_data = JsonConvert.SerializeObject(my_jsondata);

        //Print the Json object
        Console.WriteLine(json_data);

        //Parse the json object
        JObject json_object = JObject.Parse(json_data);

        //Print the parsed Json object
        Console.WriteLine((string)json_object["Host"]);
        Console.WriteLine((string)json_object["UserName"]);
        Console.WriteLine((string)json_object["Password"]);
        Console.WriteLine((string)json_object["SourceDir"]);
        Console.WriteLine((string)json_object["FileName"]);

答案 13 :(得分:0)

包括:

使用System.Text.Json;

然后像这样序列化object_to_serialize: JsonSerializer.Serialize(object_to_serialize)

答案 14 :(得分:0)

如果您想避免创建类并创建 JSON,请创建动态对象并序列化对象。

            dynamic data = new ExpandoObject();
            data.name = "kushal";
            data.isActive = true;

            // convert to JSON
            string json = Newtonsoft.Json.JsonConvert.SerializeObject(data);

像这样读取 JSON 并反序列化:

            // convert back to Object
            dynamic output = Newtonsoft.Json.JsonConvert.DeserializeObject(json);

            // read a particular value:
            output.name.Value

ExpandoObject 来自 System.Dynamic 命名空间。