Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7432033
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:23:28+00:00 2026-05-29T09:23:28+00:00

There’re some library classes that although implement Serializable , fail to serialize correctly. I

  • 0

There’re some library classes that although implement Serializable, fail to serialize correctly. I can’t fix them, but I can extend ObjectOutputStream and ObjectInputStream for some workaround.

I want my ObjectOutputStream to write additional data for each instance of class A and ObjectInputStream to read and apply that data after A is deserialized.

Currently I have a mid-workaround that requires explicit additional calls to writeObject() and readObject(). I’d prefer to manage without these calls.

Uncomment /* */ blocks to see how it works.

import java.io.*;
import java.lang.reflect.Field;
import java.util.*;
import org.junit.Test;
import static org.junit.Assert.*;
public class CloneSerializableTest2 {
    // library classes
        public static class A implements Serializable {
            public transient String s1;
        }

        public static class MyA extends A {

            public String s2;
        }

/*
    private static class AHolder implements Serializable {
        private static final Field s1Fld;
        static {
            try {
                s1Fld = A.class.getDeclaredField("s1");
                s1Fld.setAccessible(true);
            } catch (NoSuchFieldException e) {
                throw new RuntimeException("Unexpected error", e);
            }
        }
        private String s1;
        private A a;
        public AHolder(A m) {
            this.a = m;
            try {
                s1 = (String)s1Fld.get(m);
            } catch (IllegalAccessException e) {
                throw new RuntimeException("Unexpected error", e);
            }
        }
        public void restoreA() {
            try {
                s1Fld.set(a, s1);
            } catch (IllegalAccessException e) {
                throw new RuntimeException("Unexpected error", e);
            }
        }
    }
*/
    @SuppressWarnings("unchecked")
    public static <T> T cloneSerializable(T o) {
        try {
/*
            final List<AHolder> accumSrc = new ArrayList<AHolder>();
*/
            ByteArrayOutputStream bout = new ByteArrayOutputStream();
            ObjectOutputStream out = new ObjectOutputStream(bout)
/*
            {
                {
                    enableReplaceObject(true);
                }
                @Override
                protected Object replaceObject(Object obj) throws IOException
                {
                    if (obj instanceof A) {
                        accumSrc.add(new AHolder((A)obj));
                    }
                    return super.replaceObject(obj);
                }
            }
*/
            ;
            out.writeObject(o);
/*
            out.writeObject(accumSrc);
*/
            out.close();
            ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
            ObjectInputStream in = new ObjectInputStream(bin);
            Object copy = in.readObject();
/*
            List<AHolder> accumDst = (List<AHolder>)in.readObject();
            for (AHolder r : accumDst) {
                r.restoreA();
            }
*/
            in.close();
            return (T)copy;
        } catch (IOException e) {
            throw new RuntimeException("Unexpected error", e);
        } catch (ClassNotFoundException e) {
            throw new RuntimeException("Unexpected error", e);
        }
    }
    @Test
    public void testIt() throws Exception {
        try {
        MyA m1 = new MyA();
        m1.s1 = "a";
        m1.s2 = "b";

        m1 = cloneSerializable(m1);
        assertEquals("a", m1.s1);
        assertEquals("b", m1.s2);
        } catch (Exception e) {
            e.printStackTrace();
            throw e;
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T09:23:28+00:00Added an answer on May 29, 2026 at 9:23 am

    Answering to myself

    import java.io.*;
    import java.lang.reflect.Field;
    import org.junit.Test;
    import static org.junit.Assert.*;
    public class CloneSerializableTest2 {
        // library classes
            public static class A implements Serializable {
                public transient String s1;
            }
    
            public static class MyA extends A {
    
                public String s2;
            }
    
    
        private static class AHolder implements Serializable, Externalizable {
            private static final Field s1Fld;
            static {
                try {
                    s1Fld = A.class.getDeclaredField("s1");
                    s1Fld.setAccessible(true);
                } catch (NoSuchFieldException e) {
                    throw new RuntimeException("Unexpected error", e);
                }
            }
            private String s1;
            private A a;
    
            @SuppressWarnings("unused")
            public AHolder() {
            }
            public AHolder(A m) {
                this.a = m;
                try {
                    s1 = (String)s1Fld.get(m);
                } catch (IllegalAccessException e) {
                    throw new RuntimeException("Unexpected error", e);
                }
            }
    
            private Object readResolve() {
                try {
                    s1Fld.set(a, s1);
                } catch (IllegalAccessException e) {
                    throw new RuntimeException("Unexpected error", e);
                }
                return a;
            }
    
            @Override
            public void writeExternal(ObjectOutput out) throws IOException {
                out.writeObject(s1);
                ObjectOutputStream out2 = ((ObjectOutputStream)out);
                out2.writeUnshared(a);
            }
    
            @Override
            public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
                s1 = (String)in.readObject();
                a = (A)in.readObject();
            }
        }
    
        @SuppressWarnings("unchecked")
        public static <T> T cloneSerializable(T o) {
            try {
    
                ByteArrayOutputStream bout = new ByteArrayOutputStream();
                ObjectOutputStream out = new ObjectOutputStream(bout)
                {
                    {
                        enableReplaceObject(true);
                    }
                    @Override
                    protected Object replaceObject(Object obj) throws IOException
                    {
                        if (obj instanceof A) {
                            obj = new AHolder((A) obj);
                        } else if (obj instanceof AHolder) {
                            obj = ((AHolder)obj).a;
                        }
                        return super.replaceObject(obj);
                    }
                };
    
                out.writeObject(o);
    
                out.close();
                ByteArrayInputStream bin = new ByteArrayInputStream(bout.toByteArray());
                ObjectInputStream in = new ObjectInputStream(bin);
                Object copy = in.readObject();
    
                in.close();
                return (T)copy;
            } catch (IOException e) {
                throw new RuntimeException("Unexpected error", e);
            } catch (ClassNotFoundException e) {
                throw new RuntimeException("Unexpected error", e);
            }
        }
        @Test
        public void testIt() throws Exception {
            try {
            MyA m1 = new MyA();
            m1.s1 = "a";
            m1.s2 = "b";
    
            m1 = cloneSerializable(m1);
            assertEquals("a", m1.s1);
            assertEquals("b", m1.s2);
            } catch (Exception e) {
                e.printStackTrace();
                throw e;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There are some Magento Connect extensions that I find myself installing every time I
There are some posts that asks what the difference between those two are already.
There is a conversion process that is needed when migrating Visual Studio 2005 web
There is a field in my company's Contacts table. In that table, there is
There are many string matching algorithms can be used to find a pattern (string)
There's a thrird party app that needs to get information via custom http headers,
There's a column on one of my tables that's being updated by various INSERT/DELETE
There can only be one IDENTITY column per table Why is it so? Take
There are a lot of example implementations of daemons on the net. Most that
There's no Sort() function for IList . Can someoene help me with this? I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.