song.log

[자바 기술면접] 25. 직렬화, 역직렬화 본문

StudyLog/Java interview

[자바 기술면접] 25. 직렬화, 역직렬화

SingaKorean 2023. 4. 29. 18:59
반응형

- 정의 

직렬화 : 객체를 바이트 단위로 변환하여 저장하거나 전송하는 과정을 말합니다. 이를 통해 객체를 파일에 저장하거나 네트워크를 통해 전송할 수 있습니다.

 

역직렬화 : 직렬화된 바이트 데이터를 다시 객체로 변환하는 과정입니다. 이 과정에서는 객체를 생성하고, 저장된 데이터를 객체의 필드에 대입하는 과정이 수행됩니다.

 

자바에서는 Serializable 인터페이스를 구현하여 객체를 직렬화할 수 있습니다. 직렬화된 객체는 ObjectInputStream 클래스를 이용하여 역직렬화할 수 있습니다.

 

- 영어 정리 : 

Serialization :  The process of converting an object into a stream of bytes to make it possible to store the object in a file, send it over a network or save it in a database. It is used when we want to persist the state of an object, or transfer an object between different processes or over a network. By serializing an object, we can save its state and recreate it later when needed.

Deserialization : the reverse process of converting the stream of bytes back into the object. it allows us to recreate the object from the saved state.

반응형
Comments