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