Here you can find the source of createElement(Document doc, String tagName)
public static Element createElement(Document doc, String tagName)
//package com.java2s; import org.w3c.dom.Document; import org.w3c.dom.Element; public class Main { public static Element createElement(Document doc, String tagName) { return doc.createElementNS(null, tagName); }//from w w w . j a v a 2s .c om }