nu.xom.Element.getAttributeValue()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(9.3k)|赞(0)|评价(0)|浏览(309)

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

Element.getAttributeValue介绍

暂无

代码示例

代码示例来源:origin: wiztools/rest-client

  1. private static ContentType getContentType(Element e) {
  2. String contentType = e.getAttributeValue("content-type");
  3. String charsetStr = e.getAttributeValue("charset");
  4. if(StringUtil.isNotEmpty(contentType)) {
  5. return new ContentTypeBean(contentType,
  6. (charsetStr!=null? Charset.forName(charsetStr): null));
  7. }
  8. else {
  9. return null;
  10. }
  11. }
  12. }

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

  1. public String getAttribute(String name) {
  2. return currentElement.getAttributeValue(encodeAttribute(name));
  3. }

代码示例来源:origin: wiztools/rest-client

  1. private Map<String, String> getHeadersFromHeaderNode(final Element node)
  2. throws XMLException {
  3. Map<String, String> m = new LinkedHashMap<>();
  4. for (int i = 0; i < node.getChildElements().size(); i++) {
  5. Element headerElement = node.getChildElements().get(i);
  6. if (!"header".equals(headerElement.getQualifiedName())) {
  7. throw new XMLException("<headers> element should contain only <header> elements");
  8. }
  9. m.put(headerElement.getAttributeValue("key"),
  10. headerElement.getAttributeValue("value"));
  11. }
  12. return m;
  13. }

代码示例来源:origin: wiztools/rest-client

  1. private ReqEntityMultipartBean getMultipart(Element e) {
  2. final String subTypeStr = e.getAttributeValue("subtype");
  3. final MultipartSubtype subType = subTypeStr!=null?
  4. MultipartSubtype.valueOf(subTypeStr): MultipartSubtype.FORM_DATA;
  5. final String mode = e.getAttributeValue("mode");
  6. MultipartMode format = StringUtil.isNotEmpty(mode)?
  7. MultipartMode.valueOf(mode): null;
  8. List<ReqEntityPart> parts = getMultipartParts(e);
  9. return new ReqEntityMultipartBean(parts, format, subType);
  10. }

代码示例来源:origin: wiztools/rest-client

  1. private List<HttpCookie> getCookiesFromCookiesNode(final Element node)
  2. throws XMLException {
  3. List<HttpCookie> out = new ArrayList<>();
  4. for (int i = 0; i < node.getChildElements().size(); i++) {
  5. Element e = node.getChildElements().get(i);
  6. if(!"cookie".equals(e.getQualifiedName())) {
  7. throw new XMLException("<cookies> element should contain only <cookie> elements");
  8. }
  9. HttpCookie cookie = new HttpCookie(e.getAttributeValue("name"),
  10. e.getAttributeValue("value"));
  11. final String cookieVerStr = e.getAttributeValue("version");
  12. if(StringUtil.isNotEmpty(cookieVerStr)) {
  13. cookie.setVersion(Integer.parseInt(cookieVerStr));
  14. }
  15. else {
  16. cookie.setVersion(CookieVersion.DEFAULT_VERSION.getIntValue());
  17. }
  18. out.add(cookie);
  19. }
  20. return out;
  21. }

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

  1. String docID = docElem.getAttributeValue("id");
  2. Matcher matcher = datePattern.matcher(docID);
  3. matcher.find();

代码示例来源:origin: wiztools/rest-client

  1. private ReqEntityPart getMultipartPart(Element e) {
  2. final String name = e.getLocalName();
  3. final String partName = e.getAttributeValue("name");
  4. final ContentType ct = getContentType(e);
  5. String fileName = e.getAttributeValue("filename");

代码示例来源:origin: wiztools/rest-client

  1. final SSLKeyStoreBean keyStore = new SSLKeyStoreBean();
  2. final String typeStr = e.getAttributeValue("type");
  3. if(StringUtil.isNotEmpty(typeStr))
  4. keyStore.setType(KeyStoreType.valueOf(typeStr));
  5. keyStore.setFile(new File(e.getAttributeValue("file")));
  6. keyStore.setPassword(Util.base64decode(e.getAttributeValue("password")).toCharArray());
  7. out.setKeyStore(keyStore);
  8. break;
  9. final SSLKeyStoreBean trustStore = new SSLKeyStoreBean();
  10. final String typeStr = e.getAttributeValue("type");
  11. if(StringUtil.isNotEmpty(typeStr))
  12. trustStore.setType(KeyStoreType.valueOf(typeStr));
  13. trustStore.setFile(new File(e.getAttributeValue("file")));
  14. trustStore.setPassword(Util.base64decode(e.getAttributeValue("password")).toCharArray());
  15. out.setTrustStore(trustStore);
  16. break;

代码示例来源:origin: wiztools/rest-client

  1. public static List<Request> getRequestCollectionFromXMLFile(final File f)
  2. throws IOException, XMLException {
  3. XmlPersistenceRead xUtlRead = new XmlPersistenceRead();
  4. List<Request> out = new ArrayList<>();
  5. Document doc = xUtlRead.getDocumentFromFile(f);
  6. Element eRoot = doc.getRootElement();
  7. if(!"request-collection".equals(eRoot.getLocalName())) {
  8. throw new XMLException("Expecting root element <request-collection>, but found: "
  9. + eRoot.getLocalName());
  10. }
  11. final String version = eRoot.getAttributeValue("version");
  12. try {
  13. Versions.versionValidCheck(version);
  14. }
  15. catch(Versions.VersionValidationException ex) {
  16. throw new XMLException(ex);
  17. }
  18. xUtlRead.setReadVersion(version);
  19. Elements eRequests = doc.getRootElement().getChildElements();
  20. for(int i=0; i<eRequests.size(); i++) {
  21. Element eRequest = eRequests.get(i);
  22. Request req = xUtlRead.getRequestBean(eRequest);
  23. out.add(req);
  24. }
  25. return out;
  26. }

代码示例来源:origin: wiztools/rest-client

  1. Versions.versionValidCheck(rootNode.getAttributeValue("version"));
  2. } else if ("status".equals(nodeName)) {
  3. responseBean.setStatusLine(tNode.getValue());
  4. responseBean.setStatusCode(Integer.parseInt(tNode.getAttributeValue("code")));
  5. } else if ("headers".equals(nodeName)) {
  6. Map<String, String> m = getHeadersFromHeaderNode(tNode);

代码示例来源:origin: wiztools/rest-client

  1. protected Request xml2Request(final Document doc)
  2. throws MalformedURLException, XMLException {
  3. // get the rootNode
  4. Element rootNode = doc.getRootElement();
  5. if (!"rest-client".equals(rootNode.getQualifiedName())) {
  6. throw new XMLException("Root node is not <rest-client>");
  7. }
  8. // checking correct rest version
  9. final String rcVersion = rootNode.getAttributeValue("version");
  10. try {
  11. Versions.versionValidCheck(rcVersion);
  12. }
  13. catch(Versions.VersionValidationException ex) {
  14. throw new XMLException(ex);
  15. }
  16. readVersion = rcVersion;
  17. // if more than two request element is present then throw the exception
  18. if (rootNode.getChildElements().size() != 1) {
  19. throw new XMLException("There can be only one child node for root node: <request>");
  20. }
  21. // minimum one request element is present in xml
  22. if (rootNode.getFirstChildElement("request") == null) {
  23. throw new XMLException("The child node of <rest-client> should be <request>");
  24. }
  25. Element requestNode = rootNode.getFirstChildElement("request");
  26. return getRequestBean(requestNode);
  27. }

代码示例来源:origin: x-stream/xstream

  1. @Override
  2. public String getAttribute(final String name) {
  3. return currentElement.getAttributeValue(encodeAttribute(name));
  4. }

代码示例来源:origin: org.codehaus.mojo/emma-maven-plugin

  1. /**
  2. * Get full class name (package + class) for "class" XML element.
  3. *
  4. * @param elem The element.
  5. * @return the full class name (package + class) for "class" XML element.
  6. */
  7. private String fullClassName( Element elem )
  8. {
  9. final Element packageElem = (Element) elem.getParent().getParent();
  10. final String packageName = packageElem.getAttributeValue( "name" );
  11. final String className = elem.getAttributeValue( "name" );
  12. return packageName.length() != 0 ? packageName + "." + className : className;
  13. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. void createPattern() {
  2. List<Node> patterns = CMLUtil.getQueryNodes(simpleType, "./"
  3. + XSD_RESTRICTION + CMLConstants.S_SLASH + XSD_PATTERN, XPATH_XSD);
  4. if (patterns.size() > 0) {
  5. pattern = ((Element) patterns.get(0)).getAttributeValue("value");
  6. }
  7. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. private static void copyAttributeTo(Element from, Element to, String attName) {
  2. String attVal = from.getAttributeValue(attName);
  3. if (attVal != null) {
  4. to.addAttribute(new Attribute(attName, attVal));
  5. }
  6. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. /** constructor.
  2. * @param xsdElement
  3. */
  4. public CMLElementType(Element xsdElement) {
  5. init();
  6. this.xsdElement = xsdElement;
  7. this.name = xsdElement.getAttributeValue("name");
  8. processContentTypes();
  9. }

代码示例来源:origin: cmu-phil/tetrad

  1. private static void setNodeMeans(Element variablesElement, SemIm im) {
  2. Elements vars = variablesElement.getChildElements(SemXmlConstants.CONTINUOUS_VARIABLE);
  3. for (int i = 0; i < vars.size(); i++) {
  4. Element var = vars.get(i);
  5. Node node = im.getSemPm().getGraph().getNode(var.getAttributeValue(SemXmlConstants.NAME));
  6. if (var.getAttributeValue(SemXmlConstants.MEAN) != null) {
  7. im.setMean(node, Double.parseDouble(var.getAttributeValue(SemXmlConstants.MEAN)));
  8. } else {
  9. return;
  10. }
  11. }
  12. }

代码示例来源:origin: org.xml-cml/cmlxom

  1. private static double getWeight(Element element, String source) {
  2. Elements weights = element.getChildElements("mass");
  3. for (int i = 0; i < weights.size(); i++) {
  4. Element weight = (Element) weights.get(i);
  5. if (source != null
  6. && source.equals(weight.getAttributeValue("source"))) {
  7. return Double.parseDouble(weight.getValue());
  8. }
  9. }
  10. return 0;
  11. }

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

  1. private String categorize(Element row) {
  2. String cssClass = row.getAttributeValue("class");
  3. if (cssClass == null) {
  4. Element cell = (Element) row.query("td").get(0);
  5. cssClass = cell.getAttributeValue("class");
  6. }
  7. Check.notNull(cssClass, "cssClass is null");
  8. return cssClass.toUpperCase();
  9. }

代码示例来源:origin: net.sf.opendse/opendse-io

  1. protected Attributes toAttributes(nu.xom.Element eAttributes) throws IllegalArgumentException, SecurityException,
  2. InstantiationException, IllegalAccessException, InvocationTargetException, NoSuchMethodException,
  3. ClassNotFoundException {
  4. Attributes attributes = new Attributes();
  5. nu.xom.Elements eAttributeList = eAttributes.getChildElements("attribute", SpecificationWriter.NS);
  6. for (nu.xom.Element element : iterable(eAttributeList)) {
  7. String name = element.getAttributeValue("name");
  8. Object value = toAttribute(element);
  9. attributes.put(name, value);
  10. }
  11. return attributes;
  12. }

相关文章