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

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

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

Node.getNodeType介绍

[英]A code representing the type of the underlying object, as defined above.
[中]表示基础对象类型的代码,如上所述。

代码示例

代码示例来源:origin: skylot/jadx

  1. private void parse(Document doc) {
  2. NodeList nodeList = doc.getChildNodes();
  3. for (int count = 0; count < nodeList.getLength(); count++) {
  4. Node node = nodeList.item(count);
  5. if (node.getNodeType() == Node.ELEMENT_NODE
  6. && node.hasChildNodes()) {
  7. parseAttrList(node.getChildNodes());
  8. }
  9. }
  10. }

代码示例来源: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: libgdx/libgdx

  1. private void addToDependencyMapFromXML (Map<String, List<ExternalExtensionDependency>> dependencies, Element eElement, String platform) {
  2. if (eElement.getElementsByTagName(platform).item(0) != null) {
  3. Element project = (Element)eElement.getElementsByTagName(platform).item(0);
  4. ArrayList<ExternalExtensionDependency> deps = new ArrayList<ExternalExtensionDependency>();
  5. if (project.getTextContent().trim().equals("")) {
  6. // No dependencies required
  7. } else if (project.getTextContent().trim().equals("null")) {
  8. // Not supported
  9. deps = null;
  10. } else {
  11. NodeList nList = project.getElementsByTagName("dependency");
  12. for (int i = 0; i < nList.getLength(); i++) {
  13. Node nNode = nList.item(i);
  14. if (nNode.getNodeType() == Node.ELEMENT_NODE) {
  15. Element dependencyNode = (Element)nNode;
  16. boolean external = Boolean.parseBoolean(dependencyNode.getAttribute("external"));
  17. deps.add(new ExternalExtensionDependency(dependencyNode.getTextContent(), external));
  18. }
  19. }
  20. }
  21. dependencies.put(platform, deps);
  22. }
  23. }

代码示例来源: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: groovy/groovy-core

  1. public static String text(Node node) {
  2. if (node.getNodeType() == Node.TEXT_NODE || node.getNodeType() == Node.CDATA_SECTION_NODE) {
  3. return node.getNodeValue();
  4. }
  5. if (node.hasChildNodes()) {
  6. return text(node.getChildNodes());
  7. }
  8. return "";
  9. }

代码示例来源:origin: oracle/opengrok

  1. private String getValue(Node node) {
  2. if (node == null) {
  3. return null;
  4. }
  5. StringBuilder sb = new StringBuilder();
  6. Node n = node.getFirstChild();
  7. while (n != null) {
  8. if (n.getNodeType() == Node.TEXT_NODE) {
  9. sb.append(n.getNodeValue());
  10. }
  11. n = n.getNextSibling();
  12. }
  13. return sb.toString();
  14. }

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

  1. private void readPackageConfigFromXml(Node node) throws IOException {
  2. NodeList childNodes = node.getChildNodes();
  3. if (childNodes.getLength() > 0) {
  4. for (int j = 0, n = childNodes.getLength(); j < n; j++) {
  5. Node child = childNodes.item(j);
  6. if (child.getNodeType() == Node.ELEMENT_NODE) {
  7. Element check = (Element) child;
  8. String tagName = check.getTagName();
  9. String value = check.getAttribute(ATTR_VALUE);
  10. String name = check.getAttribute(ATTR_NAME);
  11. if (tagName.equals(ATTR_CONFIG_FIELD)) {
  12. mPackageFields.put(name, value);
  13. } else {
  14. System.err.println("unknown package config tag " + tagName);
  15. }
  16. }
  17. }
  18. }
  19. }

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

  1. /**
  2. * Reconstructs the resource from the XML file
  3. */
  4. @SuppressWarnings("unchecked")
  5. public SsurgeonWordlist(Element rootElt) {
  6. id = rootElt.getAttribute("id");
  7. NodeList wordEltNL = rootElt.getElementsByTagName(WORD_ELT);
  8. for (int i=0; i<wordEltNL.getLength(); i++) {
  9. Node node = wordEltNL.item(i);
  10. if (node.getNodeType() == Node.ELEMENT_NODE) {
  11. String word = Ssurgeon.getEltText((Element) node);
  12. words.add(word);
  13. }
  14. }
  15. }

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

  1. /**
  2. * Given a node, determine if it is a namespace node.
  3. *
  4. * @param node
  5. *
  6. * @return boolean Returns true if this is a namespace node; otherwise, returns false.
  7. */
  8. private boolean isNamespaceNode(Node node) {
  9. if ((null != node) &&
  10. (node.getNodeType() == Node.ATTRIBUTE_NODE) &&
  11. (node.getNodeName().startsWith("xmlns:") || node.getNodeName().equals("xmlns"))) {
  12. return true;
  13. } else {
  14. return false;
  15. }
  16. }

代码示例来源:origin: com.sun.xml.bind/jaxb-impl

  1. private void visit( Node n ) throws SAXException {
  2. setCurrentLocation( n );
  3. // if a case statement gets too big, it should be made into a separate method.
  4. switch(n.getNodeType()) {
  5. case Node.CDATA_SECTION_NODE:
  6. case Node.TEXT_NODE:
  7. String value = n.getNodeValue();
  8. receiver.characters( value.toCharArray(), 0, value.length() );
  9. break;
  10. case Node.ELEMENT_NODE:
  11. visit( (Element)n );
  12. break;
  13. case Node.ENTITY_REFERENCE_NODE:
  14. receiver.skippedEntity(n.getNodeName());
  15. break;
  16. case Node.PROCESSING_INSTRUCTION_NODE:
  17. ProcessingInstruction pi = (ProcessingInstruction)n;
  18. receiver.processingInstruction(pi.getTarget(),pi.getData());
  19. break;
  20. }
  21. }

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

  1. private String text(Node n){
  2. String text = null;
  3. switch(n.getNodeType()){
  4. case Node.TEXT_NODE:
  5. text = n.getNodeValue();
  6. if(text != null) text = text.trim();
  7. break;
  8. case Node.CDATA_SECTION_NODE:
  9. text = n.getNodeValue();
  10. break;
  11. default:
  12. //AQUtility.debug("unknown", n);
  13. }
  14. if(text == null) text = "";
  15. return text;
  16. }

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

  1. private static String parseTextNode(Node exampleNode) {
  2. StringBuffer buffer = new StringBuffer();
  3. for (int i = 0; i < exampleNode.getChildNodes().getLength(); i++) {
  4. Node node = exampleNode.getChildNodes().item(i);
  5. if (node.getNodeType() == Node.CDATA_SECTION_NODE || node.getNodeType() == Node.TEXT_NODE) {
  6. buffer.append(node.getNodeValue());
  7. }
  8. }
  9. return buffer.toString().trim();
  10. }
  11. }

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

  1. /**
  2. * For the given element, finds the first child Element with the given tag.
  3. */
  4. private static Element getFirstTag(Element element, String tag) {
  5. try {
  6. NodeList nodeList = element.getElementsByTagName(tag);
  7. if (nodeList.getLength() == 0) return null;
  8. for (int i=0; i < nodeList.getLength(); i++) {
  9. Node node = nodeList.item(i);
  10. if (node.getNodeType() == Node.ELEMENT_NODE)
  11. return (Element) node;
  12. }
  13. } catch (Exception e) {
  14. log.warning("Error getting first tag "+tag+" under element="+element);
  15. }
  16. return null;
  17. }

代码示例来源: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: groovy/groovy-core

  1. public static String toString(Object o) {
  2. if (o instanceof Node) {
  3. if (((Node) o).getNodeType() == Node.TEXT_NODE) {
  4. return ((Node) o).getNodeValue();
  5. }
  6. }
  7. if (o instanceof NodeList) {
  8. return toString((NodeList) o);
  9. }
  10. return o.toString();
  11. }

代码示例来源:origin: hibernate/hibernate-orm

  1. private static String extractContent(Element element, String defaultStr) {
  2. if ( element == null ) {
  3. return defaultStr;
  4. }
  5. NodeList children = element.getChildNodes();
  6. StringBuilder result = new StringBuilder("");
  7. for ( int i = 0; i < children.getLength() ; i++ ) {
  8. if ( children.item( i ).getNodeType() == Node.TEXT_NODE ||
  9. children.item( i ).getNodeType() == Node.CDATA_SECTION_NODE ) {
  10. result.append( children.item( i ).getNodeValue() );
  11. }
  12. }
  13. return result.toString().trim();
  14. }

代码示例来源: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: Tencent/tinker

  1. private void readLibPatternsFromXml(Node node) throws IOException {
  2. NodeList childNodes = node.getChildNodes();
  3. if (childNodes.getLength() > 0) {
  4. for (int j = 0, n = childNodes.getLength(); j < n; j++) {
  5. Node child = childNodes.item(j);
  6. if (child.getNodeType() == Node.ELEMENT_NODE) {
  7. Element check = (Element) child;
  8. String tagName = check.getTagName();
  9. String value = check.getAttribute(ATTR_VALUE);
  10. if (tagName.equals(ATTR_PATTERN)) {
  11. addToPatterns(value, mSoFilePattern);
  12. } else {
  13. System.err.println("unknown dex tag " + tagName);
  14. }
  15. }
  16. }
  17. }
  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: spring-projects/spring-framework

  1. public BeanDefinitionHolder decorateBeanDefinitionIfRequired(
  2. Element ele, BeanDefinitionHolder definitionHolder, @Nullable BeanDefinition containingBd) {
  3. BeanDefinitionHolder finalDefinition = definitionHolder;
  4. // Decorate based on custom attributes first.
  5. NamedNodeMap attributes = ele.getAttributes();
  6. for (int i = 0; i < attributes.getLength(); i++) {
  7. Node node = attributes.item(i);
  8. finalDefinition = decorateIfRequired(node, finalDefinition, containingBd);
  9. }
  10. // Decorate based on custom nested elements.
  11. NodeList children = ele.getChildNodes();
  12. for (int i = 0; i < children.getLength(); i++) {
  13. Node node = children.item(i);
  14. if (node.getNodeType() == Node.ELEMENT_NODE) {
  15. finalDefinition = decorateIfRequired(node, finalDefinition, containingBd);
  16. }
  17. }
  18. return finalDefinition;
  19. }

相关文章