本文整理汇总了Java中org.w3c.dom.Document.getXmlVersion方法的典型用法代码示例。如果您正苦于以下问题:Java Document.getXmlVersion方法的具体用法?Java Document.getXmlVersion怎么用?Java Document.getXmlVersion使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.w3c.dom.Document
的用法示例。
在下文中一共展示了Document.getXmlVersion方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getVersion
import org.w3c.dom.Document; //导入方法依赖的package包/类
/**
* Extracts the XML version from the Document.
*
* @param document
* the document
* @return the version
*/
protected String getVersion(Document document) {
if (document == null) {
return null;
}
return document.getXmlVersion();
}
示例2: _getXmlVersion
import org.w3c.dom.Document; //导入方法依赖的package包/类
private String _getXmlVersion(Node node) {
Document doc = (node.getNodeType() == Node.DOCUMENT_NODE)
? (Document) node : node.getOwnerDocument();
if (doc != null) {
try {
return doc.getXmlVersion();
} // The VM ran out of memory or there was some other serious problem. Re-throw.
catch (VirtualMachineError | ThreadDeath vme) {
throw vme;
} // Ignore all other exceptions and errors
catch (Throwable t) {
}
}
return null;
}
示例3: checkStream
import org.w3c.dom.Document; //导入方法依赖的package包/类
public void checkStream(FileInputStream fis, String inputVersion) throws Exception {
docBuilder.reset();
Document output = docBuilder.parse(fis);
String version = output.getXmlVersion();
Assert.assertTrue(inputVersion.equals(version), "Expected XML Version is 1.1, but actual version " + version);
}