Copy the attribues on one element to the other : DOM Attribute « XML « Java






Copy the attribues on one element to the other

  
import org.w3c.dom.Attr;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;

public class Utils {

  public static void copyAttributes(Element from, Element to) {
      NamedNodeMap attributes = from.getAttributes();
      for (int i = 0; i < attributes.getLength(); i++) {
          Attr node = (Attr) attributes.item(i);
          to.setAttributeNS(node.getNamespaceURI(), node.getName(), node.getValue());
      }
  }
}

   
    
  








Related examples in the same category

1.Get all the attributes for an Element
2.Get attribute's value
3.Return the right attribute node
4.Return the value of the attribute of the given element with the given name
5.Output XML element Attributes
6.Set Attribute
7.Set an Attribute in an Element
8.Get Attribute
9.Get Attribute by QName
10.Get an Attribute from an Element. Returns an empty String if none found
11.remove Attribute
12.Find Container With Attribute Value Or Create
13.Find Container With Attribute Value Or Create And Set
14.Find the first direct child with a given attribute.
15.Recursive method to find a given attribute value
16.Returns null, not "", for a nonexistent attribute
17.Retutns the value of the named attribute of the given element.
18.An Attributes implementation that can perform more operations than the attribute list helper supplied with the standard SAX2 distribution.