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

Transformer.transform(source, result) does not close output stream

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Future Project
    • Icon: P4 P4
    • 5.0
    • 5.0
    • xml
    • x86
    • windows_2000

      FULL PRODUCT VERSION :
      java version "1.5.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
      Java HotSpot(TM) Client VM (build 1.5.0-b64, mixed mode, sharing)

      ADDITIONAL OS VERSION INFORMATION :
      Microsoft Windows 2000 [Version 5.00.2195]

      A DESCRIPTION OF THE PROBLEM :
      After creating a file from a W3C Document the method File.length() returns 0 instead of the file size.

      I think the output stream will not be closed correctly in method endDocument() of the class com.sun.org.apache.xml.internal.serializer.ToXMLStream


      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      run the test program

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      length=38
      length=38
      ACTUAL -
      length=0
      length=38

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.io.File;
      import org.w3c.dom.Document;
      import javax.xml.parsers.DocumentBuilderFactory;
      import javax.xml.transform.TransformerFactory;
      import javax.xml.transform.stream.StreamResult;
      import javax.xml.transform.Source;
      import javax.xml.transform.dom.DOMSource;
      import javax.xml.transform.Result;
      import javax.xml.transform.Transformer;

      public class JDK5Test {
          public JDK5Test() {
          }

          public static void main(String[] args) {
              JDK5Test test = new JDK5Test();
              try {
                  test.test1(new File("test.xml"));
              } catch (Exception ex) {
                  ex.printStackTrace();
              }
          }

          protected void test1(File destFile)
              throws Exception
          {
              Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
              
              Source source = new DOMSource( doc );
              Result result = new StreamResult( destFile );
              TransformerFactory tf = TransformerFactory.newInstance();
              Transformer transformer = tf.newTransformer();
              // the problem is in the next line ->
              // somewhere in there the output stream is not properly closed!
              transformer.transform(source, result);
              System.out.println("length=" + destFile.length() );
              Thread.sleep(5000);
              System.out.println("length=" + destFile.length() );
          }
          
      }

      ---------- END SOURCE ----------

      CUSTOMER SUBMITTED WORKAROUND :
      add Thread.sleep()
      ###@###.### 10/18/04 10:30 GMT

            Unassigned Unassigned
            ndcosta Nelson Dcosta (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: