What is Serialization in Java?

Serialization Introduction Before going into the subject, let us see some code which is very laborious and how Serialization makes it easy. import java.io.*; public class Student { int marks; String name; public static void main(String args[]) throws IOException { Student std1 = new Student(); std1.marks = 50; std1.name = “S N Rao”; DataOutputStream dos …

What is Serialization in Java? Read More »