Thursday 4 August 2011

Remove all attributes by first making a copy of the attribute names and then using the list to remove the attributes:

      

import java.io.File;

import javax.xml.parsers.DocumentBuilderFactory;

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

public class Main {
  public static void main(String[] argvthrows Exception{
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setValidating(true);
    factory.setExpandEntityReferences(false);

    Document doc = factory.newDocumentBuilder().parse(new File("filename"));
    Element element = doc.getElementById("key1");

    NamedNodeMap attrs = element.getAttributes();
    String[] names = new String[attrs.getLength()];
    for (int i = 0; i < names.length; i++) {
      names[i= attrs.item(i).getNodeName();
    }
    for (int i = 0; i < names.length; i++) {
      attrs.removeNamedItem(names[i]);
    }
  }
}

   
    
    
    
    
    
  

No comments:

Post a Comment