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

x33g5p2x  于2022-01-18 转载在 其他  
字(11.9k)|赞(0)|评价(0)|浏览(561)

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

Element.getNodeName介绍

暂无

代码示例

代码示例来源:origin: org.netbeans.api/org-openide-filesystems

  1. private org.w3c.dom.Element find(org.w3c.dom.Element parent, String name, String kindRx) {
  2. NodeList nl = parent.getChildNodes();
  3. for (int i = 0; i < nl.getLength(); i++) {
  4. Node item = nl.item(i);
  5. if (item.getNodeType() != Node.ELEMENT_NODE) {
  6. continue;
  7. }
  8. org.w3c.dom.Element e = (org.w3c.dom.Element) item;
  9. if (e.getAttribute("name").equals(name) && e.getNodeName().matches(kindRx)) {
  10. return e;
  11. }
  12. }
  13. return null;
  14. }

代码示例来源:origin: looly/hutool

  1. /**
  2. * XML节点转换为Map
  3. *
  4. * @param node XML节点
  5. * @param result 结果Map类型
  6. * @return XML数据转换后的Map
  7. * @since 4.0.8
  8. */
  9. public static Map<String, Object> xmlToMap(Node node, Map<String, Object> result) {
  10. if (null == result) {
  11. result = new HashMap<>();
  12. }
  13. final NodeList nodeList = node.getChildNodes();
  14. final int length = nodeList.getLength();
  15. Node childNode;
  16. Element childEle;
  17. for (int i = 0; i < length; ++i) {
  18. childNode = nodeList.item(i);
  19. if (isElement(childNode)) {
  20. childEle = (Element) childNode;
  21. result.put(childEle.getNodeName(), childEle.getTextContent());
  22. }
  23. }
  24. return result;
  25. }

代码示例来源:origin: jeremylong/DependencyCheck

  1. if (!"status".equals(doc.getDocumentElement().getNodeName())) {
  2. LOGGER.warn("Expected root node name of status, got {}", doc.getDocumentElement().getNodeName());
  3. return false;

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

  1. public void testEncode() throws Exception {
  2. Ows10Factory f = Ows10Factory.eINSTANCE;
  3. GetCapabilitiesType caps = f.createGetCapabilitiesType();
  4. AcceptVersionsType versions = f.createAcceptVersionsType();
  5. caps.setAcceptVersions(versions);
  6. versions.getVersion().add("1.0.0");
  7. versions.getVersion().add("1.1.0");
  8. ByteArrayOutputStream output = new ByteArrayOutputStream();
  9. response.write(caps, output, null);
  10. Document d = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
  11. TransformerFactory.newInstance()
  12. .newTransformer()
  13. .transform(
  14. new StreamSource(new ByteArrayInputStream(output.toByteArray())),
  15. new DOMResult(d));
  16. assertEquals("ows:GetCapabilities", d.getDocumentElement().getNodeName());
  17. assertEquals(2, d.getElementsByTagName("ows:Version").getLength());
  18. }
  19. }

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

  1. private void testSerializationWithMode(Mode mode) throws Exception {
  2. Catalog catalog = new CatalogImpl();
  3. CatalogFactory cFactory = catalog.getFactory();
  4. LayerGroupInfo group1 = cFactory.createLayerGroup();
  5. group1.setName("foo");
  6. group1.setTitle("foo title");
  7. group1.setAbstract("foo abstract");
  8. group1.setMode(mode);
  9. ByteArrayOutputStream out = out();
  10. persister.save(group1, out);
  11. // print(in(out));
  12. ByteArrayInputStream in = in(out);
  13. LayerGroupInfo group2 = persister.load(in, LayerGroupInfo.class);
  14. assertEquals(group1.getName(), group2.getName());
  15. assertEquals(group1.getTitle(), group2.getTitle());
  16. assertEquals(group1.getAbstract(), group2.getAbstract());
  17. assertEquals(group1.getMode(), group2.getMode());
  18. Document dom = dom(in(out));
  19. assertEquals("layerGroup", dom.getDocumentElement().getNodeName());
  20. }

代码示例来源:origin: kiegroup/jbpm

  1. public void executeWorkItem(WorkItem workItem,
  2. WorkItemManager mgr) {
  3. assertEquals("foo", ((Element) workItem
  4. .getParameter("Comment")).getNodeName());
  5. // assertEquals("mynode", ((Element)
  6. // workItem.getParameter("Comment")).getFirstChild().getNodeName());
  7. // assertEquals("user", ((Element)
  8. // workItem.getParameter("Comment")).getFirstChild().getFirstChild().getNodeName());
  9. // assertEquals("hello world", ((Element)
  10. // workItem.getParameter("coId")).getFirstChild().getFirstChild().getAttributes().getNamedItem("hello").getNodeValue());
  11. }

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

  1. public static List<Element> getChildElementsByTagName(final Element element, final String tagName) {
  2. final List<Element> matches = new ArrayList<>();
  3. final NodeList nodeList = element.getChildNodes();
  4. for (int i = 0; i < nodeList.getLength(); i++) {
  5. final Node node = nodeList.item(i);
  6. if (!(node instanceof Element)) {
  7. continue;
  8. }
  9. final Element child = (Element) nodeList.item(i);
  10. if (child.getNodeName().equals(tagName)) {
  11. matches.add(child);
  12. }
  13. }
  14. return matches;
  15. }

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

  1. public void testEncodeComparison() throws Exception {
  2. Document doc = encode(FilterMockData.propertyIsEqualTo(), OGC.Filter);
  3. assertEquals("ogc:Filter", doc.getDocumentElement().getNodeName());
  4. assertEquals(1, doc.getElementsByTagNameNS(OGC.NAMESPACE, "PropertyIsEqualTo").getLength());
  5. }

代码示例来源:origin: kiegroup/jbpm

  1. public void executeWorkItem(WorkItem workItem,
  2. WorkItemManager mgr) {
  3. Object coIdParamObj = workItem.getParameter("coId");
  4. assertEquals("mydoc", ((Element) coIdParamObj).getNodeName());
  5. assertEquals("mynode", ((Element) workItem.getParameter("coId")).getFirstChild().getNodeName());
  6. assertEquals("user",
  7. ((Element) workItem.getParameter("coId"))
  8. .getFirstChild().getFirstChild()
  9. .getNodeName());
  10. assertEquals("hello world",
  11. ((Element) workItem.getParameter("coId"))
  12. .getFirstChild().getFirstChild()
  13. .getAttributes().getNamedItem("hello")
  14. .getNodeValue());
  15. }

代码示例来源:origin: looly/hutool

  1. /**
  2. * XML节点转换为Map
  3. *
  4. * @param node XML节点
  5. * @param result 结果Map类型
  6. * @return XML数据转换后的Map
  7. * @since 4.0.8
  8. */
  9. public static Map<String, Object> xmlToMap(Node node, Map<String, Object> result) {
  10. if (null == result) {
  11. result = new HashMap<>();
  12. }
  13. final NodeList nodeList = node.getChildNodes();
  14. final int length = nodeList.getLength();
  15. Node childNode;
  16. Element childEle;
  17. for (int i = 0; i < length; ++i) {
  18. childNode = nodeList.item(i);
  19. if (isElement(childNode)) {
  20. childEle = (Element) childNode;
  21. result.put(childEle.getNodeName(), childEle.getTextContent());
  22. }
  23. }
  24. return result;
  25. }

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

  1. public void testHandleServiceException() throws Exception {
  2. ServiceException exception = new ServiceException("hello service exception");
  3. exception.setCode("helloCode");
  4. exception.setLocator("helloLocator");
  5. exception.getExceptionText().add("helloText");
  6. handler.handleServiceException(exception, requestInfo);
  7. InputStream input = new ByteArrayInputStream(response.getContentAsString().getBytes());
  8. DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
  9. docBuilderFactory.setNamespaceAware(true);
  10. Document doc = docBuilderFactory.newDocumentBuilder().parse(input);
  11. assertEquals("ows:ExceptionReport", doc.getDocumentElement().getNodeName());
  12. }

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

  1. private static List<Element> getChildrenByTagName(final Element element, final String tagName) {
  2. final List<Element> matches = new ArrayList<>();
  3. final NodeList nodeList = element.getChildNodes();
  4. for (int i = 0; i < nodeList.getLength(); i++) {
  5. final Node node = nodeList.item(i);
  6. if (!(node instanceof Element)) {
  7. continue;
  8. }
  9. final Element child = (Element) nodeList.item(i);
  10. if (child.getNodeName().equals(tagName)) {
  11. matches.add(child);
  12. }
  13. }
  14. return matches;
  15. }

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

  1. public void testEncodeLogical() throws Exception {
  2. Document doc = encode(FilterMockData.and(), OGC.Filter);
  3. assertEquals("ogc:Filter", doc.getDocumentElement().getNodeName());
  4. assertEquals(1, doc.getElementsByTagNameNS(OGC.NAMESPACE, "And").getLength());
  5. doc = encode(FilterMockData.not(), OGC.Filter);
  6. assertEquals("ogc:Filter", doc.getDocumentElement().getNodeName());
  7. assertEquals(1, doc.getElementsByTagNameNS(OGC.NAMESPACE, "Not").getLength());
  8. }
  9. }

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

  1. /**
  2. * <!ELEMENT type (description?, (stat)+)> <!ATTLIST type name CDATA #REQUIRED>
  3. */
  4. private StatisticsType extractType(Element typeNode, StatisticsTypeFactory statFactory) {
  5. Assert.assertTrue(typeNode.getTagName().equals("type"));
  6. Assert.assertTrue(typeNode.hasAttribute("name"));
  7. final String typeName = typeNode.getAttribute("name");
  8. ArrayList stats = new ArrayList();
  9. NodeList statNodes = typeNode.getElementsByTagName("stat");
  10. for (int i = 0; i < statNodes.getLength(); i++) {
  11. Element statNode = (Element) statNodes.item(i);
  12. stats.add(extractStat(statNode, statFactory));
  13. }
  14. StatisticDescriptor[] descriptors =
  15. (StatisticDescriptor[]) stats.toArray(new StatisticDescriptor[stats.size()]);
  16. String description = "";
  17. {
  18. NodeList descriptionNodes = typeNode.getElementsByTagName("description");
  19. if (descriptionNodes.getLength() > 0) {
  20. // descriptionNodes will contain the both our description, if it exists,
  21. // and any nested stat descriptions. Ours will always be first
  22. Element descriptionNode = (Element) descriptionNodes.item(0);
  23. // but make sure the first one belongs to our node
  24. if (descriptionNode.getParentNode().getNodeName().equals(typeNode.getNodeName())) {
  25. description = extractDescription(descriptionNode);
  26. }
  27. }
  28. }
  29. return statFactory.createType(typeName, description, descriptors);
  30. }

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

  1. public void testErrorThrowingResponse() throws Exception {
  2. URL url = getClass().getResource("applicationContext-errorResponse.xml");
  3. try (FileSystemXmlApplicationContext context =
  4. new FileSystemXmlApplicationContext(url.toString())) {
  5. Dispatcher dispatcher = (Dispatcher) context.getBean("dispatcher");
  6. MockHttpServletRequest request = setupRequest();
  7. MockHttpServletResponse response = new MockHttpServletResponse();
  8. dispatcher.handleRequest(request, response);
  9. // the output is not there
  10. final String outputContent = response.getContentAsString();
  11. assertThat(outputContent, not(containsString("Hello world!")));
  12. // only the exception
  13. Document dom = XMLUnit.buildTestDocument(outputContent);
  14. assertEquals("ows:ExceptionReport", dom.getDocumentElement().getNodeName());
  15. }
  16. }
  17. }

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

  1. public static List<Element> getChildElementsByTagName(final Element element, final String tagName) {
  2. final List<Element> matches = new ArrayList<>();
  3. final NodeList nodeList = element.getChildNodes();
  4. for (int i = 0; i < nodeList.getLength(); i++) {
  5. final Node node = nodeList.item(i);
  6. if (!(node instanceof Element)) {
  7. continue;
  8. }
  9. final Element child = (Element) nodeList.item(i);
  10. if (child.getNodeName().equals(tagName)) {
  11. matches.add(child);
  12. }
  13. }
  14. return matches;
  15. }

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

  1. public void testEncodeSpatial() throws Exception {
  2. Document doc = encode(FilterMockData.intersects(), OGC.Filter);
  3. assertEquals("ogc:Filter", doc.getDocumentElement().getNodeName());
  4. assertEquals(1, doc.getElementsByTagNameNS(OGC.NAMESPACE, "Intersects").getLength());
  5. }

代码示例来源:origin: TeamNewPipe/NewPipe

  1. private static NodeList selectNodes(Document xml, String[] path, String namespaceUri) throws XPathExpressionException {
  2. Element ref = xml.getDocumentElement();
  3. for (int i = 0; i < path.length - 1; i++) {
  4. NodeList nodes = ref.getChildNodes();
  5. if (nodes.getLength() < 1) {
  6. return null;
  7. }
  8. Element elem;
  9. for (int j = 0; j < nodes.getLength(); j++) {
  10. if (nodes.item(j).getNodeType() == Node.ELEMENT_NODE) {
  11. elem = (Element) nodes.item(j);
  12. if (elem.getNodeName().equals(path[i]) && elem.getNamespaceURI().equals(namespaceUri)) {
  13. ref = elem;
  14. break;
  15. }
  16. }
  17. }
  18. }
  19. return ref.getElementsByTagNameNS(namespaceUri, path[path.length - 1]);
  20. }

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

  1. public void testEncodeSpatial() throws Exception {
  2. Document doc = encode(FilterMockData.intersects(), OGC.Filter);
  3. assertEquals("ogc:Filter", doc.getDocumentElement().getNodeName());
  4. assertEquals(1, doc.getElementsByTagNameNS(OGC.NAMESPACE, "Intersects").getLength());
  5. }

代码示例来源:origin: stackoverflow.com

  1. DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
  2. DocumentBuilder db = dbf.newDocumentBuilder();
  3. Document dom = db.parse("file.xml");
  4. Element docEle = dom.getDocumentElement();
  5. NodeList nl = docEle.getChildNodes();
  6. if (nl != null) {
  7. int length = nl.getLength();
  8. for (int i = 0; i < length; i++) {
  9. if (nl.item(i).getNodeType() == Node.ELEMENT_NODE) {
  10. Element el = (Element) nl.item(i);
  11. if (el.getNodeName().contains("staff")) {
  12. String name = el.getElementsByTagName("name").item(0).getTextContent();
  13. String phone = el.getElementsByTagName("phone").item(0).getTextContent();
  14. String email = el.getElementsByTagName("email").item(0).getTextContent();
  15. String area = el.getElementsByTagName("area").item(0).getTextContent();
  16. String city = el.getElementsByTagName("city").item(0).getTextContent();
  17. }
  18. }
  19. }
  20. }

相关文章