Here you can find the source of getNodeName(Node node)
Parameter | Description |
---|---|
node | a parameter |
public static String getNodeName(Node node)
//package com.java2s; /****************************************************************************** * Copyright (c) 2008-2013, Linagora/*from ww w . j a v a2 s .com*/ * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Linagora - initial API and implementation *******************************************************************************/ import org.w3c.dom.Node; public class Main { /** * @param node * @return the name of the XML node (with no name space element) */ public static String getNodeName(Node node) { String name = node.getNamespaceURI() != null ? node.getLocalName() : node.getNodeName(); if (name.contains(":")) { //$NON-NLS-1$ String[] parts = name.split(":"); //$NON-NLS-1$ name = parts[parts.length - 1]; } return name; } }