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

XML declaration is not followed by a newline

    • b08
    • generic
    • generic
    • Not verified

        A DESCRIPTION OF THE PROBLEM :
        Using LSSerializer to pretty-print a DOM results in an xml-declaration being not followed by a newline.

        Related to bugs #7150637 and #8054115.

        STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
        Run the following code.

        EXPECTED VERSUS ACTUAL BEHAVIOR :
        EXPECTED -
        <?xml version="1.0" encoding="UTF-8"?>
        <sometag/>
        ACTUAL -
        <?xml version="1.0" encoding="UTF-8"?><sometag/>

        ---------- BEGIN SOURCE ----------
        package io.github.oliviercailloux.jaris.xml;

        import java.io.StringWriter;

        import javax.xml.parsers.DocumentBuilder;
        import javax.xml.parsers.DocumentBuilderFactory;

        import org.w3c.dom.Document;
        import org.w3c.dom.Element;
        import org.w3c.dom.ls.DOMImplementationLS;
        import org.w3c.dom.ls.LSOutput;
        import org.w3c.dom.ls.LSSerializer;

        public class Snippet {
        public static void main(String[] args) throws Exception {
        final DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        final DocumentBuilder builder = factory.newDocumentBuilder();
        final Document document = builder.newDocument();

        final Element child = document.createElement("sometag");
        document.appendChild(child);

        final DOMImplementationLS impl = (DOMImplementationLS) document.getImplementation().getFeature("LS", "3.0");
        final LSSerializer ser = impl.createLSSerializer();
        /** But see https://bugs.openjdk.java.net/browse/JDK-7150637 */
        /**
        * But see
        * <a href="https://bugs.openjdk.java.net/browse/JDK-8054115">8054115</a>:
        * LSSerializer remove a '\n' following the xml declaration
        */
        ser.getDomConfig().setParameter("format-pretty-print", true);
        final StringWriter writer = new StringWriter();
        final LSOutput output = impl.createLSOutput();
        output.setCharacterStream(writer);
        ser.write(document, output);

        System.out.println(writer.toString());
        }
        }

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

        FREQUENCY : always


            [JDK-8249867] XML declaration is not followed by a newline

            Yuri Nesterenko added a comment - - edited
            Fix request (13u, 15u):

            we need this fix for parity with LTS releases and to make easier some further complex backports.
            Changes in the patches are all in copyright and LastChanged dates, plus a list of bugs in the test for 13u.
            All relevant tests do pass in both releases.
            CSR JDK-8281827 for 13-pool, 15-pool approved.

            Yuri Nesterenko added a comment - - edited Fix request (13u, 15u): we need this fix for parity with LTS releases and to make easier some further complex backports. Changes in the patches are all in copyright and LastChanged dates, plus a list of bugs in the test for 13u. All relevant tests do pass in both releases. CSR JDK-8281827 for 13-pool, 15-pool approved.

            Robo Duke added a comment -
            A pull request was submitted for review.
            URL: https://git.openjdk.java.net/jdk13u-dev/pull/328
            Date: 2022-02-16 09:59:20 +0000

            Robo Duke added a comment - A pull request was submitted for review. URL: https://git.openjdk.java.net/jdk13u-dev/pull/328 Date: 2022-02-16 09:59:20 +0000

            Robo Duke added a comment -
            A pull request was submitted for review.
            URL: https://git.openjdk.java.net/jdk15u-dev/pull/178
            Date: 2022-02-15 14:56:16 +0000

            Robo Duke added a comment - A pull request was submitted for review. URL: https://git.openjdk.java.net/jdk15u-dev/pull/178 Date: 2022-02-15 14:56:16 +0000

            Andrew Wang added a comment -
            No response from the submitter.

            Andrew Wang added a comment - No response from the submitter.

            Owen Stuart added a comment -
            issue resolved in Apr CPU JDK 11 - removing the 11 BPR label

            Owen Stuart added a comment - issue resolved in Apr CPU JDK 11 - removing the 11 BPR label

            Andrew Wang added a comment -
            Requested the submitter to verify the fix with the latest version of JDK at https://jdk.java.net/17/

            Andrew Wang added a comment - Requested the submitter to verify the fix with the latest version of JDK at https://jdk.java.net/17/

            I'm not able to reproduce this with OpenJDK 8u282. So my guess on what has been done for Oracle JDK 8u is to introduce the new properties controlling this behaviour as specified by the CSR in JDK-8259704:

            $ java -showversion Snippet
            openjdk version "11.0.10" 2021-01-19
            OpenJDK Runtime Environment 18.9 (build 11.0.10+9)
            OpenJDK 64-Bit Server VM 18.9 (build 11.0.10+9, mixed mode, sharing)
            <?xml version="1.0" encoding="UTF-8"?><sometag/>

            $ java -showversion Snippet
            openjdk version "1.8.0_282"
            OpenJDK Runtime Environment (build 1.8.0_282-b08)
            OpenJDK 64-Bit Server VM (build 25.282-b08, mixed mode)

            <?xml version="1.0" encoding="UTF-8"?>
            <sometag/>

            Severin Gehwolf added a comment - I'm not able to reproduce this with OpenJDK 8u282. So my guess on what has been done for Oracle JDK 8u is to introduce the new properties controlling this behaviour as specified by the CSR in JDK-8259704 : $ java -showversion Snippet openjdk version "11.0.10" 2021-01-19 OpenJDK Runtime Environment 18.9 (build 11.0.10+9) OpenJDK 64-Bit Server VM 18.9 (build 11.0.10+9, mixed mode, sharing) <?xml version="1.0" encoding="UTF-8"?><sometag/> $ java -showversion Snippet openjdk version "1.8.0_282" OpenJDK Runtime Environment (build 1.8.0_282-b08) OpenJDK 64-Bit Server VM (build 25.282-b08, mixed mode) <?xml version="1.0" encoding="UTF-8"?> <sometag/>

            Martin Doerr added a comment -
            Fix Request (11u):
            Should get backported for parity with 11.0.11-oracle. Applies almost cleanly.
            Review thread: http://mail.openjdk.java.net/pipermail/jdk-updates-dev/2021-March/005204.html

            Martin Doerr added a comment - Fix Request (11u): Should get backported for parity with 11.0.11-oracle. Applies almost cleanly. Review thread: http://mail.openjdk.java.net/pipermail/jdk-updates-dev/2021-March/005204.html

            Fix Request(16u):

            Please approve backporting this change to jdk16u. Fix applies clean. The change introduces a new property to revert XML behaviour caused by regression. Risk is minimal. The change also involves updating the module-info summary for jdk16u. For more information visit CSR - https://bugs.openjdk.java.net/browse/JDK-8259704

            Kiran Sidhartha Ravikumar (Inactive) added a comment - - edited Fix Request(16u): Please approve backporting this change to jdk16u. Fix applies clean. The change introduces a new property to revert XML behaviour caused by regression. Risk is minimal. The change also involves updating the module-info summary for jdk16u. For more information visit CSR - https://bugs.openjdk.java.net/browse/JDK-8259704

            Robo Duke added a comment -
            Changeset: 69ee314b
            Author: Joe Wang <joehw@openjdk.org>
            Date: 2021-01-30 02:34:52 +0000
            URL: https://git.openjdk.java.net/jdk/commit/69ee314b

            Robo Duke added a comment - Changeset: 69ee314b Author: Joe Wang < joehw@openjdk.org > Date: 2021-01-30 02:34:52 +0000 URL: https://git.openjdk.java.net/jdk/commit/69ee314b

              joehw Joe Wang
              webbuggrp Webbug Group
              Votes:
              0 Vote for this issue
              Watchers:
              10 Start watching this issue

                Created:
                Updated:
                Resolved: