首頁 >後端開發 >C++ >如何在 C# 中序列化和反序列化行分隔的 JSON?

如何在 C# 中序列化和反序列化行分隔的 JSON?

Linda Hamilton
Linda Hamilton原創
2025-01-22 16:36:12894瀏覽

How to Serialize and Deserialize Line-Delimited JSON in C#?

C# 中行分隔 JSON 的序列化與反序列化

在使用 JSON.NET 和 C# 5 時,可能需要根據 Google BigQuery 的規格將物件序列化和反序列化為行分隔的 JSON。此格式使用換行符號分隔每個物件。

序列化

要將物件列表序列化為行分隔的 JSON,可以使用 JsonTextWriter

<code class="language-csharp">using System.IO;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

var people = new List<Person> { }; // 注意此处Person首字母大写

using (var writer = new StringWriter())
{
    var settings = new JsonSerializerSettings()
    {
        Formatting = Formatting.None,
        NullValueHandling = NullValueHandling.Ignore
    };

    var jsonSerializer = new JsonSerializer(settings);
    jsonSerializer.Serialize(writer, people);
}</code>

這將產生一個字串,其中每個 Person 物件都在單獨一行:

<code class="language-json">{"personId": 1, "name": "John Smith", ...}
{"personId": 2, "name": "Jane Doe", ...}</code>

反序列化

要將行分隔的 JSON 反序列化為物件列表,可以使用 JsonTextReaderJsonSerializer 的組合:

<code class="language-csharp">using System.IO;
using Newtonsoft.Json;

using (var reader = new StringReader(json))
using (var jsonReader = new JsonTextReader(reader))
{
    jsonReader.SupportMultipleContent = true;
    var jsonSerializer = new JsonSerializer();

    while (jsonReader.Read())
    {
        var person = jsonSerializer.Deserialize<Person>(jsonReader); // 注意此处Person首字母大写
        people.Add(person);
    }
}</code>

這將使用反序列化的 Person 物件填入 people 清單。

改進說明: 程式碼範例中將person修正為Person,以符合C#的命名約定。 其餘部分保持原文意思不變,僅對語句進行細微調整,使表達更流暢自然。

以上是如何在 C# 中序列化和反序列化行分隔的 JSON?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn