- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.jcabi.http.response.XmlResponse.xml()
方法的一些代码示例,展示了XmlResponse.xml()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlResponse.xml()
方法的具体详情如下:
包路径:com.jcabi.http.response.XmlResponse
类名称:XmlResponse
方法名:xml
[英]Get XML body.
[中]获取XML正文。
代码示例来源:origin: yegor256/netbout
@Override
public Locale locale() throws IOException {
return new Locale(
this.request.fetch()
.as(XmlResponse.class)
.xml()
.xpath("/page/alias/locale/text()")
.get(0)
);
}
代码示例来源:origin: yegor256/netbout
@Override
public URI photo() throws IOException {
return URI.create(
this.request.fetch()
.as(XmlResponse.class)
.xml()
.xpath("/page/alias/photo/text()")
.get(0)
);
}
代码示例来源:origin: yegor256/netbout
@Override
public String name() throws IOException {
return this.request.fetch()
.as(XmlResponse.class)
.xml()
.xpath("/page/alias/name/text()")
.get(0);
}
代码示例来源:origin: yegor256/netbout
@Override
public String email() throws IOException {
return this.request.fetch()
.as(XmlResponse.class)
.xml()
.xpath("/page/alias/email/text()")
.get(0);
}
代码示例来源:origin: jcabi/jcabi-http
/**
* Follow XML link.
* @param query XPath query to fetch new URI
* @return New request
*/
public Request rel(final String query) {
this.assertXPath(query);
return new RestResponse(this).jump(
URI.create(this.xml().xpath(query).get(0))
);
}
代码示例来源:origin: yegor256/netbout
@Override
public boolean subscription() throws IOException {
return Boolean.valueOf(
this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath("/page/bout/subscription/text()")
.get(0)
);
}
代码示例来源:origin: yegor256/netbout
@Override
public boolean unseen() throws IOException {
return Boolean.parseBoolean(
this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath(this.xpath("unseen/text()"))
.get(0)
);
}
代码示例来源:origin: yegor256/netbout
@Override
public Date date() throws IOException {
return new Date(
Long.parseLong(
this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath(this.xpath("date/text()"))
.get(0)
)
);
}
代码示例来源:origin: yegor256/netbout
@Override
public String title() throws IOException {
return this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath("/page/bout/title/text()")
.get(0);
}
代码示例来源:origin: yegor256/netbout
@Override
public Date date() throws IOException {
try {
return DateFormatUtils.ISO_DATETIME_FORMAT.parse(
this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath("/page/bout/date/text()")
.get(0)
);
} catch (final ParseException ex) {
throw new IllegalStateException(ex);
}
}
代码示例来源:origin: yegor256/netbout
@Override
public String author() throws IOException {
return this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath(this.xpath("author/text()"))
.get(0);
}
代码示例来源:origin: yegor256/netbout
@Override
public String etag() throws IOException {
return this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath(this.xpath("etag/text()"))
.get(0);
}
代码示例来源:origin: yegor256/netbout
@Override
public String ctype() throws IOException {
return this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath(this.xpath("ctype/text()"))
.get(0);
}
代码示例来源:origin: yegor256/netbout
@Override
public Iterable<Attachment> iterate() throws IOException {
return Iterables.transform(
this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath("/page/bout/attachments/attachment/name/text()"),
new Function<String, Attachment>() {
@Override
public Attachment apply(final String name) {
return RtAttachments.this.get(name);
}
}
);
}
}
代码示例来源:origin: co.stateful/java-sdk
@Override
public Iterable<String> names() throws IOException {
return this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath("/page/counters/counter/name/text()");
}
代码示例来源:origin: co.stateful/java-sdk
@Override
public boolean exists(final String name) throws IOException {
return !this.request
.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.rel("/page/links/link[@rel='self']/@href")
.method(Request.GET)
.fetch()
.as(XmlResponse.class)
.xml()
.nodes(String.format("/page/locks/lock[name='%s']", name))
.isEmpty();
}
代码示例来源:origin: com.jcabi/jcabi-w3c
@Override
public ValidationResponse validate(final String html)
throws IOException {
final Request req = this.request(html);
final Response response = req.fetch();
if (response.status() != HttpURLConnection.HTTP_OK) {
throw new IOException(
response.reason()
);
}
return this.build(
response.as(XmlResponse.class)
.registerNs("nu", "http://n.validator.nu/messages/")
.assertXPath("//nu:messages")
.assertXPath("//nu:source")
.xml()
);
}
代码示例来源:origin: yegor256/netbout
@Override
public long start() throws IOException {
final long number = Long.parseLong(
this.request.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.rel("/page/links/link[@rel='start']/@href")
.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_SEE_OTHER)
.follow()
.fetch()
.as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.xml()
.xpath("/page/bout/number/text()")
.get(0)
);
Logger.info(this, "bout #%d started", number);
return number;
}
代码示例来源:origin: com.jcabi/jcabi-w3c
/**
* Return a response after real processing of the CSS.
* @param css The CSS stylesheet to check
* @return The response
* @throws IOException if fails
*/
private ValidationResponse processed(final String css) throws IOException {
final Request req = this.request(
AbstractBaseValidator.entity(
"file", DefaultCssValidator.filter(css), "text/css"
)
);
final Response response = DefaultCssValidator.correct(req.fetch());
return DefaultCssValidator.build(
response.as(XmlResponse.class)
.registerNs("env", "http://www.w3.org/2003/05/soap-envelope")
.registerNs("m", "http://www.w3.org/2005/07/css-validator")
.assertXPath("//m:validity")
.assertXPath("//m:checkedby")
.xml()
);
}
代码示例来源:origin: yegor256/takes
/**
* Retrieve Github access token.
* @param home Home of this page
* @param code Github "authorization code"
* @return The token
* @throws IOException If failed
*/
private String token(final String home, final String code)
throws IOException {
final String uri = new Href(this.github)
.path(PsGithub.LOGIN).path("oauth").path(PsGithub.ACCESS_TOKEN)
.toString();
return new JdkRequest(uri)
.method("POST")
.header("Accept", "application/xml")
.body()
.formParam("client_id", this.app)
.formParam("redirect_uri", home)
.formParam("client_secret", this.key)
.formParam(PsGithub.CODE, code)
.back()
.fetch().as(RestResponse.class)
.assertStatus(HttpURLConnection.HTTP_OK)
.as(XmlResponse.class)
.assertXPath("/OAuth/access_token")
.xml()
.xpath("/OAuth/access_token/text()")
.get(0);
}
我正在使用 Jersey 构建一个 rest API,其中允许根据客户端喜欢的格式输出 XML 和 JSON(使用 Accept header ) .该服务将以下类作为输出发送,如下所示 @XmlRo
我正在尝试从 XMLResponse 创建一个 FileReader (不是 Document),如下所示: // Parse XML Response DocumentBuilder
本文整理了Java中com.jcabi.http.response.XmlResponse.()方法的一些代码示例,展示了XmlResponse.()的具体用法。这些代码示例主要来源于Github/S
本文整理了Java中com.jcabi.http.response.XmlResponse.assertXPath()方法的一些代码示例,展示了XmlResponse.assertXPath()的具体
本文整理了Java中com.jcabi.http.response.XmlResponse.rel()方法的一些代码示例,展示了XmlResponse.rel()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中com.jcabi.http.response.XmlResponse.xml()方法的一些代码示例,展示了XmlResponse.xml()的具体用法。这些代码示例主要来源于Gi
我尝试使用的 API 在检索时返回乱码 XML。 以下是将身份验证参数发布到端点的基本代码。 [[APIManager sharedManager] postPath:@"Authenticate"
我是一名优秀的程序员,十分优秀!