- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.xembly.Xembler.applyQuietly()
方法的一些代码示例,展示了Xembler.applyQuietly()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Xembler.applyQuietly()
方法的具体详情如下:
包路径:org.xembly.Xembler
类名称:Xembler
方法名:applyQuietly
[英]Apply all changes to the document/node, without any checked exceptions.
[中]将所有更改应用于文档/节点,无任何选中的异常。
代码示例来源:origin: yegor256/takes
/**
* Render source as XML.
* @param dom DOM node to build upon
* @param src Source
* @return XML
* @throws IOException If fails
*/
private static InputStream render(final Node dom,
final XeSource src) throws IOException {
final Node copy = cloneNode(dom);
final ByteArrayOutputStream baos =
new ByteArrayOutputStream();
final Node node = new Xembler(src.toXembly()).applyQuietly(copy);
try {
TransformerFactory.newInstance().newTransformer().transform(
new DOMSource(node),
new StreamResult(
new Utf8OutputStreamWriter(baos)
)
);
} catch (final TransformerException ex) {
throw new IllegalStateException(ex);
}
return new ByteArrayInputStream(baos.toByteArray());
}
代码示例来源:origin: org.takes/takes
/**
* Render source as XML.
* @param dom DOM node to build upon
* @param src Source
* @return XML
* @throws IOException If fails
*/
private static InputStream render(final Node dom,
final XeSource src) throws IOException {
final Node copy = cloneNode(dom);
final ByteArrayOutputStream baos =
new ByteArrayOutputStream();
final Node node = new Xembler(src.toXembly()).applyQuietly(copy);
try {
TransformerFactory.newInstance().newTransformer().transform(
new DOMSource(node),
new StreamResult(
new Utf8OutputStreamWriter(baos)
)
);
} catch (final TransformerException ex) {
throw new IllegalStateException(ex);
}
return new ByteArrayInputStream(baos.toByteArray());
}
代码示例来源:origin: jcabi/jcabi-github
@Override
public void apply(
final Iterable<Directive> dirs
) throws IOException {
synchronized (this.name) {
FileUtils.write(
new File(this.name),
new XMLDocument(
new Xembler(dirs).applyQuietly(this.xml().node())
).toString(),
StandardCharsets.UTF_8
);
}
}
@Override
代码示例来源:origin: yegor256/jpeek
.add("defects")
.set(Double.toString(defects / total)).up()
).applyQuietly(xml.node())
);
本文整理了Java中org.xembly.Xembler类的一些代码示例,展示了Xembler类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精
本文整理了Java中org.xembly.Xembler.apply()方法的一些代码示例,展示了Xembler.apply()的具体用法。这些代码示例主要来源于Github/Stackoverflo
本文整理了Java中org.xembly.Xembler.xml()方法的一些代码示例,展示了Xembler.xml()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Ma
本文整理了Java中org.xembly.Xembler.applyQuietly()方法的一些代码示例,展示了Xembler.applyQuietly()的具体用法。这些代码示例主要来源于Githu
本文整理了Java中org.xembly.Xembler.()方法的一些代码示例,展示了Xembler.()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台
我是一名优秀的程序员,十分优秀!