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

GregorianCalendar serialized form is not backward compatible

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.4.0
    • 1.4.0
    • core-libs
    • beta3
    • x86
    • windows_nt



      Name: nt126004 Date: 08/10/2001


      java version "1.4.0-beta"
      Java(TM) 2 RuntimeEnvironment, Standard Edition (build 1.4.0-beta-b65)
      Java HotSpot(TM) Client VM (build 1.4.0-beta-b65, mixed mode)

      Serialize an instance of the GregorianCalendar using SDK 1.4 beta and
      deserialize in SDK 1.2.2 as shown in the Java code below. An
      java.lang.ClassNotFoundException: sun.util.calendar.ZoneInfo is thrown.

      import java.io.*;
      import java.util.*;

      public class GregorianTest{

        static String fName="tmp";

        public static void main(String[] arg)
        throws Exception{

          writeObject();
          readObject();

        }

        static void writeObject()
          throws Exception{

          FileOutputStream fos = new FileOutputStream(fName);
          ObjectOutputStream out = new ObjectOutputStream(fos);

          TimeZone tz = TimeZone.getTimeZone("GMT");
          TimeZone.setDefault(tz);

          Locale.setDefault(Locale.ENGLISH);

          GregorianCalendar gCal= new GregorianCalendar(tz, Locale.ENGLISH);
          out.writeObject(gCal);

          out.flush();
          out.close();

        }

        static void readObject()
          throws Exception{
          FileInputStream fis = new FileInputStream(fName);
          ObjectInputStream in = new ObjectInputStream(fis);


          TimeZone.setDefault( TimeZone.getTimeZone("GMT") );

          GregorianCalendar gCal= (GregorianCalendar)in.readObject();
          System.out.println(" gCal="+gCal);

          in.close();

        }
      }
      (Review ID: 129824)
      ======================================================================

            okutsu Masayoshi Okutsu
            nthompsosunw Nathanael Thompson (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: