Comment écrire un fichier JSON en C# ?
Pour écrire vos données dans un fichier texte au format JSON, vous pouvez utiliser une bibliothèque tels que Newtonsoft Json.Net ou System.Text.Json (pour .NET Core 3.0 et .NET 5 ). Explorons les deux options :
Newtonsoft Json.Net (.Net Framework et .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 Noyau 3.0 et .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 (sérialisation asynchrone)
// 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); }
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!