News

Java’s interface language feature confuses many Java newbies. Many mistakenly assume that interfaces only sidestep Java’s failure to support multiple implementation inheritance. In reality, that ...
Java object serialization is a feature of the JDK that is far too often overlooked. When a developer puts together a prototype or cooks up a proof of concept, simply saving a serialized Java object to ...
Learn about serialization in Java with our comprehensive tutorial. We provide examples to help you understand how serialization works.
In a recent project, I needed an easy way to traverse Java object trees and extract values from the objects. Instead of continually going through huge iterator-if-else setups, I wanted a tool that ...