Tag Archives: Serialization

Deep Copying Objects in Java

I wrote a simple code which others may find useful in their projects for making a deep copy of an object or a List of objects. import java.io.*; import java.util.ArrayList; import java.util.List; public class SerializationUtil { public static <T> Object … Continue reading

Posted in Useful Tips in Java | Tagged , , , | Leave a comment