首頁 > 後端開發 > C++ > 如何使用 Newtonsoft.Json 和 System.Text.Json 在 C# 中撰寫 JSON 檔案?

如何使用 Newtonsoft.Json 和 System.Text.Json 在 C# 中撰寫 JSON 檔案?

Linda Hamilton
發布: 2025-01-18 01:37:10
原創
717 人瀏覽過

How to Write a JSON File in C# Using Newtonsoft.Json and System.Text.Json?

如何用 C# 寫 JSON 檔案?

要將資料寫入 JSON 格式的文字文件,您可以使用函式庫例如 Newtonsoft Json.Net 或 System.Text.Json(適用於 .NET Core 3.0 和 .NET 5)。讓我們來探索這兩個選項:

Newtonsoft Json.Net(.Net Framework 和.Net Core)

// Initialize your data
List<data> _data = new List<data>();
_data.Add(new data()
{
    Id = 1,
    SSN = 2,
    Message = "A Message"
});

// Serialize the data to JSON
string json = JsonConvert.SerializeObject(_data.ToArray());

// Write the JSON string to a file
System.IO.File.WriteAllText(@"D:\path.txt", json);
登入後複製

System.Text.Json (.NET核心3.0 和.NET 5 )

// Initialize your data
List<data> _data = new List<data>();
_data.Add(new data()
{
    Id = 1,
    SSN = 2,
    Message = "A Message"
});

// Serialize the data to JSON (synchronously)
string json = JsonSerializer.Serialize(_data);

// Write the JSON string to a file
File.WriteAllText(@"D:\path.txt", json);
登入後複製

System.Text.Json(非同步序列化)

// Initialize your data
List<data> _data = new List<data>();
_data.Add(new data()
{
    Id = 1,
    SSN = 2,
    Message = "A Message"
});

// Serialize the data to JSON (asynchronously)
using (FileStream createStream = File.Create(@"D:\path.txt"))
{
    await JsonSerializer.SerializeAsync(createStream, _data);
}
登入後複製

以上是如何使用 Newtonsoft.Json 和 System.Text.Json 在 C# 中撰寫 JSON 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板