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

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

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

Element.getAttributes介绍

暂无

代码示例

代码示例来源:origin: com.thoughtworks.xstream/xstream

  1. public int getAttributeCount() {
  2. return currentElement.getAttributes().getLength();
  3. }

代码示例来源:origin: alibaba/cobar

  1. public static Map<String, Object> loadAttributes(Element e) {
  2. Map<String, Object> map = new HashMap<String, Object>();
  3. NamedNodeMap nm = e.getAttributes();
  4. for (int j = 0; j < nm.getLength(); j++) {
  5. Node n = nm.item(j);
  6. if (n instanceof Attr) {
  7. Attr attr = (Attr) n;
  8. map.put(attr.getName(), attr.getNodeValue());
  9. }
  10. }
  11. return map;
  12. }

代码示例来源: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. }

代码示例来源: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: com.thoughtworks.xstream/xstream

  1. public String getAttribute(int index) {
  2. return ((Attr) currentElement.getAttributes().item(index)).getValue();
  3. }

代码示例来源:origin: com.thoughtworks.xstream/xstream

  1. public String getAttributeName(int index) {
  2. return decodeAttribute(((Attr) currentElement.getAttributes().item(index)).getName());
  3. }

代码示例来源:origin: osmandapp/Osmand

  1. protected static void copyAndReplaceElement(Element oldElement, Element newElement) {
  2. while(oldElement.getChildNodes().getLength() > 0) {
  3. newElement.appendChild(oldElement.getChildNodes().item(0));
  4. }
  5. NamedNodeMap attrs = oldElement.getAttributes();
  6. for(int i = 0; i < attrs.getLength(); i++) {
  7. Node ns = attrs.item(i);
  8. newElement.setAttribute(ns.getNodeName(), ns.getNodeValue());
  9. }
  10. ((Element)oldElement.getParentNode()).replaceChild(newElement, oldElement);
  11. }
  12. }

代码示例来源:origin: aragozin/jvm-tools

  1. public static String attr(Element el, String... attr) {
  2. NamedNodeMap nnm = el.getAttributes();
  3. for(int i = 0; i != nnm.getLength(); ++i) {
  4. Node node = nnm.item(i);
  5. if (node instanceof Attr) {
  6. Attr a = (Attr) node;
  7. for(String at: attr) {
  8. if (a.getName().equalsIgnoreCase(at)) {
  9. return a.getValue();
  10. }
  11. }
  12. }
  13. }
  14. return null;
  15. }
  16. }

代码示例来源:origin: org.springframework/spring-beans

  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. }

代码示例来源:origin: spring-projects/spring-security

  1. private static boolean isDefaultHttpConfig(Element httpElt) {
  2. return httpElt.getChildNodes().getLength() == 0
  3. && httpElt.getAttributes().getLength() == 0;
  4. }

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

  1. /**
  2. * Parse the supplied {@link Element} and populate the supplied
  3. * {@link BeanDefinitionBuilder} as required.
  4. * <p>This implementation maps any attributes present on the
  5. * supplied element to {@link org.springframework.beans.PropertyValue}
  6. * instances, and
  7. * {@link BeanDefinitionBuilder#addPropertyValue(String, Object) adds them}
  8. * to the
  9. * {@link org.springframework.beans.factory.config.BeanDefinition builder}.
  10. * <p>The {@link #extractPropertyName(String)} method is used to
  11. * reconcile the name of an attribute with the name of a JavaBean
  12. * property.
  13. * @param element the XML element being parsed
  14. * @param builder used to define the {@code BeanDefinition}
  15. * @see #extractPropertyName(String)
  16. */
  17. @Override
  18. protected void doParse(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) {
  19. NamedNodeMap attributes = element.getAttributes();
  20. for (int x = 0; x < attributes.getLength(); x++) {
  21. Attr attribute = (Attr) attributes.item(x);
  22. if (isEligibleAttribute(attribute, parserContext)) {
  23. String propertyName = extractPropertyName(attribute.getLocalName());
  24. Assert.state(StringUtils.hasText(propertyName),
  25. "Illegal property name returned from 'extractPropertyName(String)': cannot be null or empty.");
  26. builder.addPropertyValue(propertyName, attribute.getValue());
  27. }
  28. }
  29. postProcess(builder, element);
  30. }

代码示例来源:origin: plutext/docx4j

  1. /**
  2. * This method throws a CanonicalizationException if the supplied Element
  3. * contains any relative namespaces.
  4. *
  5. * @param ctxNode
  6. * @throws CanonicalizationException
  7. * @see C14nHelper#assertNotRelativeNS(Attr)
  8. */
  9. public static void checkForRelativeNamespace(Element ctxNode)
  10. throws CanonicalizationException {
  11. if (ctxNode != null) {
  12. NamedNodeMap attributes = ctxNode.getAttributes();
  13. for (int i = 0; i < attributes.getLength(); i++) {
  14. C14nHelper.assertNotRelativeNS((Attr) attributes.item(i));
  15. }
  16. } else {
  17. throw new CanonicalizationException("Called checkForRelativeNamespace() on null");
  18. }
  19. }
  20. }

代码示例来源:origin: osmandapp/Osmand

  1. public static void combineAllApplyTags(Document document) {
  2. NodeList nl = document.getElementsByTagName("apply");
  3. while(nl.getLength() > 0) {
  4. Element app = (Element) nl.item(0);
  5. Element parent = (Element) app.getParentNode();
  6. NamedNodeMap attrs = app.getAttributes();
  7. for(int i = 0; i < attrs.getLength(); i++) {
  8. Node ns = attrs.item(i);
  9. parent.setAttribute(ns.getNodeName(), ns.getNodeValue());
  10. }
  11. while(app.getChildNodes().getLength() > 0) {
  12. Node ni = app.getChildNodes().item(0);
  13. app.getParentNode().insertBefore(ni, app);
  14. }
  15. app.getParentNode().removeChild(app);
  16. }
  17. }

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

  1. public void parseAttributes(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) {
  2. NamedNodeMap attributes = element.getAttributes();
  3. for (int x = 0; x < attributes.getLength(); x++) {
  4. Attr attribute = (Attr) attributes.item(x);
  5. if (isEligibleAttribute(attribute)) {
  6. String propertyName
  7. = attribute.getLocalName().endsWith(REF_SUFFIX)
  8. ? attribute.getLocalName()
  9. .substring(0, attribute.getLocalName()
  10. .length() - REF_SUFFIX.length())
  11. : attribute.getLocalName();
  12. propertyName = Conventions
  13. .attributeNameToPropertyName(propertyName);
  14. Assert.state(StringUtils.hasText(propertyName),
  15. "Illegal property name returned from"
  16. + " 'extractPropertyName(String)': cannot be"
  17. + " null or empty.");
  18. if (attribute.getLocalName().endsWith(REF_SUFFIX)) {
  19. builder.addPropertyReference(propertyName,
  20. attribute.getValue());
  21. } else {
  22. builder.addPropertyValue(propertyName, attribute.getValue());
  23. }
  24. }
  25. }
  26. }

代码示例来源:origin: groovy/groovy-core

  1. protected boolean printAttributes(Element element) {
  2. boolean hasAttribute = false;
  3. NamedNodeMap attributes = element.getAttributes();
  4. int length = attributes.getLength();
  5. if (length > 0) {
  6. StringBuffer buffer = new StringBuffer();
  7. for (int i = 0; i < length; i++) {
  8. printAttributeWithPrefix((Attr) attributes.item(i), buffer);
  9. }
  10. for (int i = 0; i < length; i++) {
  11. hasAttribute = printAttributeWithoutPrefix((Attr) attributes.item(i), hasAttribute);
  12. }
  13. if (buffer.length() > 0) {
  14. if (hasAttribute) {
  15. print(", ");
  16. }
  17. print(buffer.toString());
  18. hasAttribute = true;
  19. }
  20. }
  21. return hasAttribute;
  22. }

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

  1. /**
  2. * checks rule part with tag "sentence"; there is only the "type" attribute right now: checks if sentence type of a token is
  3. * the same as the value of the type attribute in the rule
  4. *
  5. * @param currentRulePart
  6. * currentRulePart
  7. * @param sentenceType
  8. * sentenceType
  9. * @return true if everything passes
  10. */
  11. protected boolean checkSentence(Element currentRulePart, String sentenceType) {
  12. NamedNodeMap attNodes = currentRulePart.getAttributes();
  13. for (int z = 0; z < attNodes.getLength(); z++) {
  14. Node el = attNodes.item(z);
  15. String currentAtt = el.getNodeName();
  16. String currentVal = el.getNodeValue();
  17. if (currentAtt.equals("type")) { // there is only the "type" attribute right now
  18. if (!currentVal.startsWith("!")) { // no negation
  19. if (!sentenceType.equals(currentVal))
  20. return false;
  21. } else { // negation
  22. currentVal = currentVal.substring(1, currentVal.length());
  23. if (sentenceType.equals(currentVal))
  24. return false;
  25. }
  26. }
  27. }
  28. return true;
  29. }

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

  1. public void parseAttributes(Element element, ParserContext parserContext, BeanDefinitionBuilder builder) {
  2. NamedNodeMap attributes = element.getAttributes();
  3. for (int x = 0; x < attributes.getLength(); x++) {
  4. Attr attribute = (Attr) attributes.item(x);
  5. if (isEligibleAttribute(attribute)) {
  6. String propertyName
  7. = attribute.getLocalName().endsWith(REF_SUFFIX)
  8. ? attribute.getLocalName()
  9. .substring(0, attribute.getLocalName()
  10. .length() - REF_SUFFIX.length())
  11. : attribute.getLocalName();
  12. propertyName = Conventions
  13. .attributeNameToPropertyName(propertyName);
  14. Assert.state(StringUtils.hasText(propertyName),
  15. "Illegal property name returned from"
  16. + " 'extractPropertyName(String)': cannot be"
  17. + " null or empty.");
  18. if (attribute.getLocalName().endsWith(REF_SUFFIX)) {
  19. builder.addPropertyReference(propertyName,
  20. attribute.getValue());
  21. } else {
  22. builder.addPropertyValue(propertyName, attribute.getValue());
  23. }
  24. }
  25. }
  26. }

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

  1. /**
  2. * checks rule part with tag "specialPosition"; there is only the "type" attribute right now: checks if specialPosition value
  3. * of a token is the same as the value of the type attribute in the rule; values: endofvorfeld, endofpar (end of paragraph)
  4. *
  5. * @param currentRulePart
  6. * currentRulePart
  7. * @param specialPositionType
  8. * specialPositionType
  9. * @return true if everything passes
  10. */
  11. protected boolean checkSpecialPosition(Element currentRulePart, String specialPositionType) {
  12. NamedNodeMap attNodes = currentRulePart.getAttributes();
  13. for (int z = 0; z < attNodes.getLength(); z++) {
  14. Node el = attNodes.item(z);
  15. String currentAtt = el.getNodeName();
  16. String currentVal = el.getNodeValue();
  17. if (currentAtt.equals("type")) { // there is only the "type" attribute right now
  18. if (!currentVal.startsWith("!")) { // no negation
  19. if (!specialPositionType.equals(currentVal))
  20. return false;
  21. } else { // negation
  22. currentVal = currentVal.substring(1, currentVal.length());
  23. if (specialPositionType.equals(currentVal))
  24. return false;
  25. }
  26. }
  27. }
  28. return true;
  29. }

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

  1. private static void fixupAttrsSingle(Element e) throws DOMException {
  2. removeXmlBase(e);
  3. Map<String, String> replace = new HashMap<String, String>();
  4. NamedNodeMap attrs = e.getAttributes();
  5. for (int j = 0; j < attrs.getLength(); j++) {
  6. Attr attr = (Attr) attrs.item(j);
  7. if (attr.getNamespaceURI() == null && !attr.getName().equals("xmlns")) { // NOI18N
  8. replace.put(attr.getName(), attr.getValue());
  9. }
  10. }
  11. for (Map.Entry<String, String> entry : replace.entrySet()) {
  12. e.removeAttribute(entry.getKey());
  13. e.setAttributeNS(null, entry.getKey(), entry.getValue());
  14. }
  15. }
  16. private static void removeXmlBase(Element e) {

相关文章