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

MemoryCacheImageOutputStream.writeBit() does not update the length

XMLWordPrintable

    • beta2
    • generic
    • generic



      Name: mlR10151 Date: 04/04/2001



      According to the spec. (class MemoryCacheImageOutputStream)

      public long length()
       . . .
      Returns:
          a long containing the length of the stream, if known, or else -1.

      But it returns wrong value if last byte was filled by the writeBit method:

      ===================== a.java =======================
      import java.io.*;
      import javax.imageio.stream.*;

      public class a {
          public static void main (String argv[]) throws Exception {
              OutputStream ostream = new ByteArrayOutputStream();
              MemoryCacheImageOutputStream mcios = new MemoryCacheImageOutputStream(ostream);

              mcios.write(0);
              mcios.writeBit(1);
          
              long len = mcios.length();
              System.out.println( (len == -1 || len == 2 ? "Passed" : "Failed") + ". len = " + len );
          }
      }
      ===================== log =======================
      % java -version
      java version "1.4.0-beta"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.0-beta-b58)
      Java HotSpot(TM) Client VM (build 1.4.0-beta-b58, mixed mode)
      % java a
      Failed. len = 1


      Note, the test with 8 lines "mcios.writeBit(1);" fails also.

      This bug causes failure of the new JCK test
      api/javax_imageio/stream/MemoryCacheImageOutputStream/index.html#length


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

            dricesunw Daniel Rice (Inactive)
            mlsunw Ml Ml (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: