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