org.w3c.dom.Node.getNodeName()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(13.2k)|赞(0)|评价(0)|浏览(623)

本文整理了Java中org.w3c.dom.Node.getNodeName()方法的一些代码示例,展示了Node.getNodeName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.getNodeName()方法的具体详情如下:
包路径:org.w3c.dom.Node
类名称:Node
方法名:getNodeName

Node.getNodeName介绍

[英]The name of this node, depending on its type; see the table above.
[中]此节点的名称,取决于其类型;见上表。

代码示例

代码示例来源:origin: libgdx/libgdx

  1. /** If the child node doesn't exist, it is created. */
  2. private static Node getFirstChildNodeByName (Node parent, String child) {
  3. NodeList childNodes = parent.getChildNodes();
  4. for (int i = 0; i < childNodes.getLength(); i++) {
  5. if (childNodes.item(i).getNodeName().equals(child)) {
  6. return childNodes.item(i);
  7. }
  8. }
  9. Node newNode = parent.getOwnerDocument().createElement(child);
  10. if (childNodes.item(0) != null)
  11. return parent.insertBefore(newNode, childNodes.item(0));
  12. else
  13. return parent.appendChild(newNode);
  14. }

代码示例来源:origin: robolectric/robolectric

  1. private static HashMap<String, String> parseNodeAttributes(Node node) {
  2. final NamedNodeMap attributes = node.getAttributes();
  3. final int attrCount = attributes.getLength();
  4. final HashMap<String, String> receiverAttrs = new HashMap<>(attributes.getLength());
  5. for (int i = 0; i < attrCount; i++) {
  6. Node attribute = attributes.item(i);
  7. String value = attribute.getNodeValue();
  8. if (value != null) {
  9. receiverAttrs.put(attribute.getNodeName(), value);
  10. }
  11. }
  12. return receiverAttrs;
  13. }

代码示例来源:origin: pmd/pmd

  1. private static boolean isElementNode(Node node, String name) {
  2. return node.getNodeType() == Node.ELEMENT_NODE && node.getNodeName().equals(name);
  3. }

代码示例来源:origin: apache/incubator-dubbo

  1. private static void parseProperties(NodeList nodeList, RootBeanDefinition beanDefinition) {
  2. if (nodeList != null && nodeList.getLength() > 0) {
  3. for (int i = 0; i < nodeList.getLength(); i++) {
  4. Node node = nodeList.item(i);
  5. if (node instanceof Element) {
  6. if ("property".equals(node.getNodeName())
  7. || "property".equals(node.getLocalName())) {
  8. String name = ((Element) node).getAttribute("name");
  9. if (name != null && name.length() > 0) {
  10. String value = ((Element) node).getAttribute("value");
  11. String ref = ((Element) node).getAttribute("ref");
  12. if (value != null && value.length() > 0) {
  13. beanDefinition.getPropertyValues().addPropertyValue(name, value);
  14. } else if (ref != null && ref.length() > 0) {
  15. beanDefinition.getPropertyValues().addPropertyValue(name, new RuntimeBeanReference(ref));
  16. } else {
  17. throw new UnsupportedOperationException("Unsupported <property name=\"" + name + "\"> sub tag, Only supported <property name=\"" + name + "\" ref=\"...\" /> or <property name=\"" + name + "\" value=\"...\" />");
  18. }
  19. }
  20. }
  21. }
  22. }
  23. }
  24. }

代码示例来源:origin: Tencent/tinker

  1. if (node.getNodeType() != Node.ELEMENT_NODE) {
  2. continue;
  3. String resourceType = node.getNodeName();
  4. if (resourceType.equals(ITEM_TAG)) {
  5. resourceType = node.getAttributes().getNamedItem("type").getNodeValue();
  6. if (resourceType.equals("id")) {
  7. resourceCollector.addIgnoreId(node.getAttributes().getNamedItem("name").getNodeValue());

代码示例来源:origin: pmd/pmd

  1. @Override
  2. public Attribute next() {
  3. org.w3c.dom.Node attributeNode = attributes.item(index++);
  4. return new Attribute(XmlNodeWrapper.this,
  5. attributeNode.getNodeName(),
  6. attributeNode.getNodeValue());
  7. }

代码示例来源:origin: checkstyle/checkstyle

  1. private static void verifyXmlNode(Node expected, Node actual, String path,
  2. BiPredicate<Node, Node> ordered) {
  3. if (expected == null) {
  4. if (actual != null) {
  5. Assert.fail("no node should exist: " + path + actual.getNodeName() + "/");
  6. }
  7. }
  8. else {
  9. final String newPath = path + expected.getNodeName() + "/";
  10. Assert.assertNotNull("node should exist: " + newPath, actual);
  11. Assert.assertEquals("node should have same name: " + newPath, expected.getNodeName(),
  12. actual.getNodeName());
  13. Assert.assertEquals("node should have same type: " + newPath, expected.getNodeType(),
  14. actual.getNodeType());
  15. verifyXmlAttributes(expected.getAttributes(), actual.getAttributes(), newPath);
  16. verifyXmlNodes(expected, actual, newPath, ordered);
  17. }
  18. }

代码示例来源:origin: libgdx/libgdx

  1. /** If the child node doesn't exist, it is created. */
  2. private static Node getFirstChildNodeByName (Node parent, String child) {
  3. NodeList childNodes = parent.getChildNodes();
  4. for (int i = 0; i < childNodes.getLength(); i++) {
  5. if (childNodes.item(i).getNodeName().equals(child)) {
  6. return childNodes.item(i);
  7. }
  8. }
  9. Node newNode = parent.getOwnerDocument().createElement(child);
  10. if (childNodes.item(0) != null)
  11. return parent.insertBefore(newNode, childNodes.item(0));
  12. else
  13. return parent.appendChild(newNode);
  14. }

代码示例来源:origin: apache/incubator-dubbo

  1. private static void parseProperties(NodeList nodeList, RootBeanDefinition beanDefinition) {
  2. if (nodeList != null && nodeList.getLength() > 0) {
  3. for (int i = 0; i < nodeList.getLength(); i++) {
  4. Node node = nodeList.item(i);
  5. if (node instanceof Element) {
  6. if ("property".equals(node.getNodeName())
  7. || "property".equals(node.getLocalName())) {
  8. String name = ((Element) node).getAttribute("name");
  9. if (name != null && name.length() > 0) {
  10. String value = ((Element) node).getAttribute("value");
  11. String ref = ((Element) node).getAttribute("ref");
  12. if (value != null && value.length() > 0) {
  13. beanDefinition.getPropertyValues().addPropertyValue(name, value);
  14. } else if (ref != null && ref.length() > 0) {
  15. beanDefinition.getPropertyValues().addPropertyValue(name, new RuntimeBeanReference(ref));
  16. } else {
  17. throw new UnsupportedOperationException("Unsupported <property name=\"" + name + "\"> sub tag, Only supported <property name=\"" + name + "\" ref=\"...\" /> or <property name=\"" + name + "\" value=\"...\" />");
  18. }
  19. }
  20. }
  21. }
  22. }
  23. }
  24. }

代码示例来源:origin: Tencent/tinker

  1. private static String nodeToString(Node node, boolean isNoChild) {
  2. StringBuilder stringBuilder = new StringBuilder();
  3. if (node != null) {
  4. stringBuilder.append(node.getNodeName());
  5. NamedNodeMap namedNodeMap = node.getAttributes();
  6. stringBuilder.append(Constant.Symbol.MIDDLE_BRACKET_LEFT);
  7. int namedNodeMapLength = namedNodeMap.getLength();
  8. for (int j = 0; j < namedNodeMapLength; j++) {
  9. Node attributeNode = namedNodeMap.item(j);
  10. stringBuilder.append(Constant.Symbol.AT + attributeNode.getNodeName() + Constant.Symbol.EQUAL + attributeNode.getNodeValue());
  11. if (j < namedNodeMapLength - 1) {
  12. stringBuilder.append(Constant.Symbol.COMMA);
  13. }
  14. }
  15. stringBuilder.append(Constant.Symbol.MIDDLE_BRACKET_RIGHT);
  16. String value = StringUtil.nullToBlank(isNoChild ? node.getTextContent() : node.getNodeValue()).trim();
  17. if (StringUtil.isNotBlank(value)) {
  18. stringBuilder.append(Constant.Symbol.EQUAL + value);
  19. }
  20. }
  21. return stringBuilder.toString();
  22. }

代码示例来源:origin: org.freemarker/freemarker

  1. void outputContent(NamedNodeMap nodes, StringBuilder buf) {
  2. for (int i = 0; i < nodes.getLength(); ++i) {
  3. Node n = nodes.item(i);
  4. if (n.getNodeType() != Node.ATTRIBUTE_NODE
  5. || (!n.getNodeName().startsWith("xmlns:") && !n.getNodeName().equals("xmlns"))) {
  6. outputContent(n, buf);
  7. }
  8. }
  9. }

代码示例来源:origin: nutzam/nutz

  1. /**
  2. * 获取该 XML 元素内所有的属性的值,按照Map的形式返回
  3. *
  4. * @param ele
  5. * XML 元素
  6. * @return 所有属性的值
  7. */
  8. public static Map<String, String> getAttrs(Element ele) {
  9. NamedNodeMap nodeMap = ele.getAttributes();
  10. Map<String, String> attrs = new HashMap<String, String>(nodeMap.getLength());
  11. for (int i = 0; i < nodeMap.getLength(); i++) {
  12. attrs.put(nodeMap.item(i).getNodeName(), nodeMap.item(i).getNodeValue());
  13. }
  14. return attrs;
  15. }

代码示例来源:origin: robolectric/robolectric

  1. private List<Node> getChildrenTags(final Node node, final String tagName) {
  2. List<Node> children = new ArrayList<>();
  3. for (int i = 0; i < node.getChildNodes().getLength(); i++) {
  4. Node childNode = node.getChildNodes().item(i);
  5. if (childNode.getNodeName().equalsIgnoreCase(tagName)) {
  6. children.add(childNode);
  7. }
  8. }
  9. return children;
  10. }

代码示例来源:origin: apache/incubator-dubbo

  1. private static void parseNested(Element element, ParserContext parserContext, Class<?> beanClass, boolean required, String tag, String property, String ref, BeanDefinition beanDefinition) {
  2. NodeList nodeList = element.getChildNodes();
  3. if (nodeList != null && nodeList.getLength() > 0) {
  4. boolean first = true;
  5. for (int i = 0; i < nodeList.getLength(); i++) {
  6. Node node = nodeList.item(i);
  7. if (node instanceof Element) {
  8. if (tag.equals(node.getNodeName())
  9. || tag.equals(node.getLocalName())) {
  10. if (first) {
  11. first = false;
  12. String isDefault = element.getAttribute("default");
  13. if (StringUtils.isEmpty(isDefault)) {
  14. beanDefinition.getPropertyValues().addPropertyValue("default", "false");
  15. }
  16. }
  17. BeanDefinition subDefinition = parse((Element) node, parserContext, beanClass, required);
  18. if (subDefinition != null && ref != null && ref.length() > 0) {
  19. subDefinition.getPropertyValues().addPropertyValue(property, new RuntimeBeanReference(ref));
  20. }
  21. }
  22. }
  23. }
  24. }
  25. }

代码示例来源:origin: real-logic/simple-binary-encoding

  1. /**
  2. * Helper function that throws an exception when the attribute is not set.
  3. *
  4. * @param elementNode that should have the attribute
  5. * @param attrName that is to be looked up
  6. * @return value of the attribute
  7. * @throws IllegalArgumentException if the attribute is not present
  8. */
  9. public static String getAttributeValue(final Node elementNode, final String attrName)
  10. {
  11. final Node attrNode = elementNode.getAttributes().getNamedItemNS(null, attrName);
  12. if (attrNode == null || "".equals(attrNode.getNodeValue()))
  13. {
  14. throw new IllegalStateException(
  15. "Element '" + elementNode.getNodeName() + "' has empty or missing attribute: " + attrName);
  16. }
  17. return attrNode.getNodeValue();
  18. }

代码示例来源:origin: libgdx/libgdx

  1. private void writeUpdatedTMX (TiledMap tiledMap, FileHandle tmxFileHandle) throws IOException {
  2. Document doc;
  3. DocumentBuilder docBuilder;
  4. DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
  5. try {
  6. docBuilder = docFactory.newDocumentBuilder();
  7. doc = docBuilder.parse(tmxFileHandle.read());
  8. Node map = doc.getFirstChild();
  9. while (map.getNodeType() != Node.ELEMENT_NODE || map.getNodeName() != "map") {
  10. if ((map = map.getNextSibling()) == null) {
  11. throw new GdxRuntimeException("Couldn't find map node!");
  12. }
  13. }
  14. setProperty(doc, map, "atlas", settings.tilesetOutputDirectory + "/" + settings.atlasOutputName + ".atlas");
  15. TransformerFactory transformerFactory = TransformerFactory.newInstance();
  16. Transformer transformer = transformerFactory.newTransformer();
  17. DOMSource source = new DOMSource(doc);
  18. outputDir.mkdirs();
  19. StreamResult result = new StreamResult(new File(outputDir, tmxFileHandle.name()));
  20. transformer.transform(source, result);
  21. } catch (ParserConfigurationException e) {
  22. throw new RuntimeException("ParserConfigurationException: " + e.getMessage());
  23. } catch (SAXException e) {
  24. throw new RuntimeException("SAXException: " + e.getMessage());
  25. } catch (TransformerConfigurationException e) {
  26. throw new RuntimeException("TransformerConfigurationException: " + e.getMessage());
  27. } catch (TransformerException e) {
  28. throw new RuntimeException("TransformerException: " + e.getMessage());
  29. }
  30. }

代码示例来源:origin: apache/geode

  1. static String findPrefix(final Element root, final String namespaceUri) {
  2. // Look for all of the attributes of cache that start with xmlns
  3. NamedNodeMap attributes = root.getAttributes();
  4. for (int i = 0; i < attributes.getLength(); i++) {
  5. Node item = attributes.item(i);
  6. if (item.getNodeName().startsWith("xmlns")) {
  7. if (item.getNodeValue().equals(namespaceUri)) {
  8. String[] splitName = item.getNodeName().split(":");
  9. if (splitName.length > 1) {
  10. return splitName[1];
  11. } else {
  12. return "";
  13. }
  14. }
  15. }
  16. }
  17. return null;
  18. }

代码示例来源:origin: stanfordnlp/CoreNLP

  1. /**
  2. * Searches for all immediate children with the given name
  3. */
  4. protected static List<Node> getChildrenByName(Node node, String name) {
  5. List<Node> matches = new ArrayList<>();
  6. NodeList children = node.getChildNodes();
  7. // search children
  8. for (int i = 0; i < children.getLength(); i++) {
  9. Node child = children.item(i);
  10. if (child.getNodeName().equals(name)) {
  11. matches.add(child);
  12. }
  13. }
  14. return matches;
  15. }

代码示例来源:origin: apache/incubator-dubbo

  1. private static void parseNested(Element element, ParserContext parserContext, Class<?> beanClass, boolean required, String tag, String property, String ref, BeanDefinition beanDefinition) {
  2. NodeList nodeList = element.getChildNodes();
  3. if (nodeList != null && nodeList.getLength() > 0) {
  4. boolean first = true;
  5. for (int i = 0; i < nodeList.getLength(); i++) {
  6. Node node = nodeList.item(i);
  7. if (node instanceof Element) {
  8. if (tag.equals(node.getNodeName())
  9. || tag.equals(node.getLocalName())) {
  10. if (first) {
  11. first = false;
  12. String isDefault = element.getAttribute("default");
  13. if (StringUtils.isEmpty(isDefault)) {
  14. beanDefinition.getPropertyValues().addPropertyValue("default", "false");
  15. }
  16. }
  17. BeanDefinition subDefinition = parse((Element) node, parserContext, beanClass, required);
  18. if (subDefinition != null && ref != null && ref.length() > 0) {
  19. subDefinition.getPropertyValues().addPropertyValue(property, new RuntimeBeanReference(ref));
  20. }
  21. }
  22. }
  23. }
  24. }
  25. }

代码示例来源:origin: typ0520/fastdex

  1. private static String nodeToString(Node node, boolean isNoChild) {
  2. StringBuilder stringBuilder = new StringBuilder();
  3. if (node != null) {
  4. stringBuilder.append(node.getNodeName());
  5. NamedNodeMap namedNodeMap = node.getAttributes();
  6. stringBuilder.append(Constant.Symbol.MIDDLE_BRACKET_LEFT);
  7. int namedNodeMapLength = namedNodeMap.getLength();
  8. for (int j = 0; j < namedNodeMapLength; j++) {
  9. Node attributeNode = namedNodeMap.item(j);
  10. stringBuilder.append(Constant.Symbol.AT + attributeNode.getNodeName() + Constant.Symbol.EQUAL + attributeNode.getNodeValue());
  11. if (j < namedNodeMapLength - 1) {
  12. stringBuilder.append(Constant.Symbol.COMMA);
  13. }
  14. }
  15. stringBuilder.append(Constant.Symbol.MIDDLE_BRACKET_RIGHT);
  16. String value = StringUtil.nullToBlank(isNoChild ? node.getTextContent() : node.getNodeValue()).trim();
  17. if (StringUtil.isNotBlank(value)) {
  18. stringBuilder.append(Constant.Symbol.EQUAL + value);
  19. }
  20. }
  21. return stringBuilder.toString();
  22. }

相关文章