Java tutorial
//package com.java2s; import org.w3c.dom.Node; public class Main { /** * Removes all children of the specified node. * * @param node * the node. */ public static void removeAllChildren(Node node) { Node child; while ((child = node.getFirstChild()) != null) { node.removeChild(child); } } }