Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4096943

java.text.Collator fails to be serialized

XMLWordPrintable

    • sparc
    • solaris_2.5



      Name: avC70361 Date: 12/04/97



        The java.text.Collator fails to be serialized despite of implementing the
      java.io.Serializable interface. Unexpected exception NotSerializableException
      for class java.text.EntryPair is thrown during the serialization process.

      Here is the test demonstrating the bug:
      ---------------CollatorTest.java--------------
      import java.text.Collator;
      import java.io.IOException;
      import java.io.ByteArrayOutputStream;
      import java.io.ObjectOutputStream;

      public class CollatorTest {

        public static void main(String args[]) {

          ObjectOutputStream stream = null;

          try {

            stream = new ObjectOutputStream(
              new ByteArrayOutputStream()
            );

          } catch(IOException e) {
            System.out.println("Unexpected exception : " + e);
            System.exit(1);
          }

          try {

            stream.writeObject(Collator.getInstance());

          } catch(IOException e) {
            System.out.println("Unexpected exception : " + e);
          }

        }

      }
      -----------The test output------------
      #>java CollatorTest
      Unexpected exception : java.io.NotSerializableException: java.text.EntryPair
      --------------------------------------

      ======================================================================

            joconnersunw John Oconner (Inactive)
            ovlasov Oleksandr Vlasov (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: