首页 >后端开发 >C++ >如何使用 Newtonsoft.Json 和 System.Text.Json 在 C# 中编写 JSON 文件?

如何使用 Newtonsoft.Json 和 System.Text.Json 在 C# 中编写 JSON 文件?

Linda Hamilton
Linda Hamilton原创
2025-01-18 01:37:10718浏览

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn