本文整理汇总了Java中javax.xml.stream.XMLInputFactory.newDefaultFactory方法的典型用法代码示例。如果您正苦于以下问题:Java XMLInputFactory.newDefaultFactory方法的具体用法?Java XMLInputFactory.newDefaultFactory怎么用?Java XMLInputFactory.newDefaultFactory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.stream.XMLInputFactory
的用法示例。
在下文中一共展示了XMLInputFactory.newDefaultFactory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testDefaultInstance
import javax.xml.stream.XMLInputFactory; //导入方法依赖的package包/类
/**
* Test if newDefaultFactory() method returns an instance
* of the expected factory.
* @throws Exception If any errors occur.
*/
@Test
public void testDefaultInstance() throws Exception {
XMLInputFactory if1 = XMLInputFactory.newDefaultFactory();
XMLInputFactory if2 = XMLInputFactory.newFactory();
assertNotSame(if1, if2, "same instance returned:");
assertSame(if1.getClass(), if2.getClass(),
"unexpected class mismatch for newDefaultFactory():");
assertEquals(if1.getClass().getName(), DEFAULT_IMPL_CLASS);
}
示例2: test
import javax.xml.stream.XMLInputFactory; //导入方法依赖的package包/类
/**
* @bug 8169450
* Verifies that the parser successfully parses the declarations provided in
* xmlDeclarations. Exception would otherwise be thrown as reported in 8169450.
*
* XML Declaration according to https://www.w3.org/TR/REC-xml/#NT-XMLDecl
* [23] XMLDecl ::= '<?xml' VersionInfo EncodingDecl? SDDecl? S? '?>'
* [24] VersionInfo ::= S 'version' Eq ("'" VersionNum "'" | '"' VersionNum '"')
* [25] Eq ::= S? '=' S? [26] VersionNum ::= '1.' [0-9]+
*
* @param xml the test xml
* @throws Exception if the parser fails to parse the xml
*/
@Test(dataProvider = "xmlDeclarations")
public void test(String xml) throws Exception {
XMLInputFactory xif = XMLInputFactory.newDefaultFactory();
XMLStreamReader xsr = xif.createXMLStreamReader(new StringReader(xml));
while (xsr.hasNext()) {
xsr.next();
}
}