本文整理匯總了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();
}
}