Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#의 이진 직렬화 및 역직렬화란 무엇이며 C#에서 이진 직렬화를 달성하는 방법은 무엇입니까?

<시간/>

사람이 읽을 수 있는 형식이 아닌 바이너리 형식으로 개체를 변환하는 것을 바이너리 직렬화라고 합니다.

바이너리 형식을 사람이 읽을 수 있는 형식으로 다시 변환하는 것을 역직렬화라고 합니까?

C#에서 바이너리 직렬화를 달성하려면 System.Runtime.Serialization.Formatters.Binary 라이브러리를 사용해야 합니다. 어셈블리

BinaryFormatter 클래스의 객체를 생성하고 클래스 내부의 직렬화 메소드 사용

Serialize an Object to Binary
[Serializable]
public class Demo {
   public string ApplicationName { get; set; } = "Binary Serialize";
   public int ApplicationId { get; set; } = 1001;
}
class Program {
   static void Main()    {
      Demo sample = new Demo();
      FileStream fileStream = new FileStream(@"C:\Temp\Questions.dat", FileMode.Create);
      BinaryFormatter formatter = new BinaryFormatter();
      formatter.Serialize(fileStream, sample);
      Console.ReadKey();
   }
}

출력

ÿÿÿÿ

AConsoleApp, 버전=1.0.0.0, Culture=neutral, PublicKeyToken=null ConsoleApp.Demok__BackingField-k__BackingField 이진 직렬화

Converting back from Binary to Object
[Serializable]
public class Demo {
   public string ApplicationName { get; set; }
   public int ApplicationId { get; set; }
}
class Program {
   static void Main()    {
      FileStream fileStream = new FileStream(@"C:\Temp\Questions.dat ", FileMode.Open);
      BinaryFormatter formatter = new BinaryFormatter();
      Demo deserializedSampledemo = (Demo)formatter.Deserialize(fileStream);
      Console.WriteLine($"ApplicationName { deserializedSampledemo.ApplicationName} --- ApplicationId       { deserializedSampledemo.ApplicationId}");
      Console.ReadKey();
   }
}

출력

ApplicationName Binary Serialize --- ApplicationId 1001