How to serialize static data members of a Java class?

Maddy.Shik picture Maddy.Shik · Jun 17, 2009 · Viewed 49.2k times · Source

When we serialize objects, static members are not serialized, but if we need to do so, is there any way out?

Answer

Kathy Van Stone picture Kathy Van Stone · Jun 17, 2009

The first question is why you need to serialize the static members?

Static members are associated with the class, not the instances, so it does not make sense to include them when serializing an instance.

The first solution is to make those members not static. Or, if those members are the same in the original class and the target class (same class, but possibly different runtime environments), don't serialize them at all.

I have a few thoughts on how one could send across static members, but I first need to see the use case, as in all cases that means updating the target class, and I haven't found a good reason to do so.