溫馨提示×

C#中List的序列化與反序列化方法有哪些

c#
小樊
160
2024-08-13 16:42:38
欄目: 編程語言

在C#中,可以使用以下方法對List進行序列化和反序列化:

  1. 使用Json.NET庫(Newtonsoft.Json)進行序列化和反序列化:
using Newtonsoft.Json;
using System.Collections.Generic;

// 將List序列化為JSON字符串
string json = JsonConvert.SerializeObject(list);

// 將JSON字符串反序列化為List
List<T> deserializedList = JsonConvert.DeserializeObject<List<T>>(json);
  1. 使用BinaryFormatter進行序列化和反序列化:
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
using System.Collections.Generic;

// 創(chuàng)建BinaryFormatter對象
BinaryFormatter formatter = new BinaryFormatter();

// 將List序列化為字節(jié)數(shù)組
using (MemoryStream stream = new MemoryStream())
{
    formatter.Serialize(stream, list);
    byte[] data = stream.ToArray();
}

// 將字節(jié)數(shù)組反序列化為List
using (MemoryStream stream = new MemoryStream(data))
{
    List<T> deserializedList = (List<T>)formatter.Deserialize(stream);
}

請注意,使用BinaryFormatter進行序列化和反序列化會將數(shù)據(jù)保存為二進制格式,并且不易閱讀,建議使用Json.NET庫進行序列化和反序列化。

0