Java examples for XML:XML Attribute
Create new XML DOM Attribute
//package com.java2s; import org.w3c.dom.Attr; import org.w3c.dom.Element; public class Main { /**/*from w w w . jav a 2 s. c om*/ * Genera un nuevo atributo utilizando el documento del elemento * proporcionado. * * @param elemento * @param nombre * @return */ public static Attr getNuevoAtributo(Element elemento, String nombre) { return elemento.getOwnerDocument().createAttribute(nombre); } }