Externalization in Java

Externalization in Java is a process that improves the performance of serialization and deserialization mechanisms by complete control over what data fields are serialized and deserialized. In other simple words, externalization is used to customize serialization and deserialization processes. It…

Read MoreExternalization in Java

Console in Java

Console in Java is a class in java.io package that provides access to the system console associated with JVM. Console class was introduced in Java 1.6 version. It is mainly used for reading data from the console and writing data…

Read MoreConsole in Java