javax.xml.transform.TransformerException: com.sun.org.apache.xml.internal.utils.WrappedRuntimeException: The markup in the document preceding the root element must be well-formed.
We were missing the xml header in the file
because we didn't call the DocumentHelper.createDocument() method!
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
Document document = DocumentHelper.createDocument();
No comments:
Post a Comment