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

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

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

Element.getValue介绍

暂无

代码示例

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

  1. static char[] getPassword(Element ePassword) {
  2. return Util.base64decode(ePassword.getValue()).toCharArray();
  3. }
  4. }

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

  1. private String getPartValue(Element e) {
  2. if(readVersion.isLessThan(VERSION_SINCE_PART_CONTENT)) {
  3. return e.getValue();
  4. }
  5. else {
  6. Element eContent = e.getChildElements("content").get(0);
  7. return eContent.getValue();
  8. }
  9. }

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

  1. private void addFields(Elements eFields, ReqEntityBasePart part) {
  2. if(eFields == null) {
  3. return;
  4. }
  5. for(int i=0; i<eFields.size(); i++) {
  6. Element eField = eFields.get(i);
  7. String name = eField.getChildElements("name").get(0).getValue();
  8. String value = eField.getChildElements("value").get(0).getValue();
  9. part.addField(name, value);
  10. }
  11. }

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

  1. static void populateBasicDigestAuth(BasicDigestAuthBaseBean bean, Element eAuth) {
  2. Elements eChildren = eAuth.getChildElements();
  3. for(int i=0; i<eChildren.size(); i++) {
  4. Element e = eChildren.get(i);
  5. final String name = e.getLocalName();
  6. if(name.equals("host")) {
  7. bean.setHost(e.getValue());
  8. }
  9. else if(name.equals("realm")) {
  10. bean.setRealm(e.getValue());
  11. }
  12. else if(name.equals("username")) {
  13. bean.setUsername(e.getValue());
  14. }
  15. else if(name.equals("password")) {
  16. bean.setPassword(getPassword(e));
  17. }
  18. else if(name.equals("preemptive")) {
  19. bean.setPreemptive(true);
  20. }
  21. else {
  22. throw new XMLException("Unknown element in basic/digest auth: " + name);
  23. }
  24. }
  25. }

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

  1. static NtlmAuth getNtlmAuth(Element eNtlmAuth) {
  2. NtlmAuthBean out = new NtlmAuthBean();
  3. Elements eChildren = eNtlmAuth.getChildElements();
  4. for(int i=0; i<eChildren.size(); i++) {
  5. Element e = eChildren.get(i);
  6. final String name = e.getLocalName();
  7. if(name.equals("domain")) {
  8. out.setDomain(e.getValue());
  9. }
  10. else if(name.equals("workstation")) {
  11. out.setWorkstation(e.getValue());
  12. }
  13. else if(name.equals("username")) {
  14. out.setUsername(e.getValue());
  15. }
  16. else if(name.equals("password")) {
  17. out.setPassword(getPassword(e));
  18. }
  19. else {
  20. throw new XMLException("Unknown element in ntlm auth: " + name);
  21. }
  22. }
  23. return out;
  24. }

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

  1. if("string".equals(name)) {
  2. ContentType ct = getContentType(e);
  3. String body = e.getValue();
  4. return new ReqEntityStringBean(body, ct);
  5. String filePath = e.getValue();
  6. return new ReqEntityFileBean(new File(filePath), ct);
  7. byte[] body = Util.base64decodeByteArray(e.getValue());
  8. return new ReqEntityByteArrayBean(body, ct);
  9. try {
  10. ContentType ct = getContentType(e);
  11. URL url = new URL(e.getValue());
  12. return new ReqEntityUrlStreamBean(ct, url);

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

  1. static OAuth2BearerAuth getOAuth2BearerAuth(Element eAuth) {
  2. OAuth2BearerAuthBean out = new OAuth2BearerAuthBean();
  3. Elements eChildren = eAuth.getChildElements();
  4. for(int i=0; i<eChildren.size(); i++) {
  5. Element e = eChildren.get(i);
  6. final String name = e.getLocalName();
  7. if(name.equals("token")) {
  8. out.setOAuth2BearerToken(e.getValue());
  9. }
  10. else {
  11. throw new XMLException("Unknown element in oauth2-bearer auth: " + name);
  12. }
  13. }
  14. return out;
  15. }

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

  1. String nodeName = tNode.getQualifiedName();
  2. if ("http-version".equals(nodeName)) {
  3. String t = tNode.getValue();
  4. HTTPVersion httpVersion = "1.1".equals(t)?
  5. HTTPVersion.HTTP_1_1 : HTTPVersion.HTTP_1_0;
  6. URL url = new URL(tNode.getValue());
  7. requestBean.setUrl(url);
  8. requestBean.setMethod(HTTPMethod.get(tNode.getValue()));
  9. requestBean.setTestScript(tNode.getValue());

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

  1. responseBean.setExecutionTime(Long.parseLong(tNode.getValue()));
  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. final String base64body = tNode.getValue();
  7. responseBean.setResponseBody(Util.base64decodeByteArray(base64body));
  8. } else if ("test-result".equals(nodeName)) {

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

  1. break;
  2. case "hostname-verifier":
  3. out.setHostNameVerifier(SSLHostnameVerifier.valueOf(e.getValue()));
  4. break;
  5. case "keystore":

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

  1. /**
  2. * @return the value of the elemnt, will return null if its an empty string.
  3. */
  4. private static String getValue(Element value) {
  5. String v = value.getValue();
  6. if (v != null && v.length() == 0) {
  7. return null;
  8. }
  9. return v;
  10. }

代码示例来源:origin: BruceEckel/OnJava8-Examples

  1. public APerson(Element person) {
  2. first = person
  3. .getFirstChildElement("first").getValue();
  4. last = person
  5. .getFirstChildElement("last").getValue();
  6. }
  7. @Override

代码示例来源:origin: org.openbase/jul.extension.xml

  1. public static boolean parseBooleanElementValue(final String elementName, final Element sourceElement) {
  2. try {
  3. return Boolean.parseBoolean(XMLProcessor.parseOneChildElement(elementName, sourceElement).getValue());
  4. } catch (MissingElementException | OverissueElementException ex) {
  5. return false;
  6. }
  7. }

代码示例来源:origin: ESAPI/esapi-java-legacy

  1. private static List<Object> getExceptionsFromElement(Element root) {
  2. Elements exceptions = root.getChildElements("path-exception");
  3. ArrayList<Object> exceptionList = new ArrayList<Object>();
  4. for(int i=0;i<exceptions.size();i++) {
  5. Element e = exceptions.get(i);
  6. if ( REGEX.equalsIgnoreCase(e.getAttributeValue("type"))) {
  7. exceptionList.add( Pattern.compile(e.getValue()) );
  8. } else {
  9. exceptionList.add( e.getValue() );
  10. }
  11. }
  12. return exceptionList;
  13. }

代码示例来源:origin: se.vgregion.mobile/mobile-mobile-composite-svc

  1. private String getValue(Elements elements) {
  2. if(elements.size() == 1) {
  3. return elements.get(0).getValue();
  4. } else {
  5. throw new RuntimeException("Invalid XML");
  6. }
  7. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static SDocumentTitle documentTitleRoot(
  2. final Element root)
  3. {
  4. final Element e = SDocumentParser.getElement(root, "document-title");
  5. assert e != null;
  6. return SDocumentTitle.documentTitle(e.getValue());
  7. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static SFormalItemTitle formalItemTitleRoot(
  2. final Element e)
  3. {
  4. final Element ec = SDocumentParser.getElement(e, "formal-item-title");
  5. assert ec != null;
  6. return SFormalItemTitle.formalItemTitle(ec.getValue());
  7. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static SSectionTitle sectionTitleRoot(
  2. final Element root)
  3. {
  4. final Element e = SDocumentParser.getElement(root, "section-title");
  5. assert e != null;
  6. return SSectionTitle.sectionTitle(e.getValue());
  7. }

代码示例来源:origin: com.io7m.jstructural/io7m-jstructural-xom

  1. private static
  2. @Nullable
  3. SDocumentStyle documentStyleRoot(
  4. final Element root)
  5. throws URISyntaxException
  6. {
  7. final Element e = SDocumentParser.getElement(root, "document-style");
  8. if (e == null) {
  9. return null;
  10. }
  11. return SDocumentStyle.documentStyle(new URI(e.getValue()));
  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. }

相关文章