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

java.text.RuleBasedCollator fails to be serialized

XMLWordPrintable

    • sparc
    • solaris_2.5



      Name: avC70361 Date: 12/04/97



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

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

      public class RuleBasedCollatorTest {

        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(new RuleBasedCollator("< a < b"));

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

        }

      }
      -----------The test output------------
      #>java RuleBasedCollatorTest
      Unexpected exception : java.io.NotSerializableException: java.text.CompactIntArray
      --------------------------------------

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

            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: