Java examples for XML:XML Attribute
Set the value of XML attribute
//package com.java2s; import org.w3c.dom.Element; public class Main { /**// ww w . ja v a2 s .c om * Set the value of attribute * * @param element * @param attr * @param attrVal */ public static void setElementAttr(Element element, String attr, String attrVal) { element.setAttribute(attr, attrVal); } }