Java tutorial
//package com.java2s; import org.w3c.dom.Document; import org.w3c.dom.Node; public class Main { public static Node createAttributeNode(Document document, String str, String str2) { Node createAttribute = document.createAttribute(str); if (createAttribute != null) { createAttribute.setNodeValue(str2); } return createAttribute; } }