本文整理了Java中net.sf.saxon.Query.rewriteToDisk
方法的一些代码示例,展示了Query.rewriteToDisk
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.rewriteToDisk
方法的具体详情如下:
包路径:net.sf.saxon.Query
类名称:Query
方法名:rewriteToDisk
[英]Write an updated document back to disk, using the original URI from which it was read
[中]使用读取文档的原始URI将更新后的文档写回磁盘
代码示例来源:origin: net.sf.saxon/Saxon-HE
String documentURI = pool.getDocumentURI(node);
if (documentURI != null) {
rewriteToDisk(node, serializer, backup, showTime ? System.err : null);
} else if (showTime) {
System.err.println("Updated document discarded because it was not read using doc()");
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon
String documentURI = pool.getDocumentURI(node);
if (documentURI != null) {
rewriteToDisk(node, serializer, backup, showTime ? System.err : null);
} else if (showTime) {
System.err.println("Updated document discarded because it was not read using doc()");
内容来源于网络,如有侵权,请联系作者删除!