本文整理了Java中org.apache.xmlbeans.XmlTokenSource.newCursor()
方法的一些代码示例,展示了XmlTokenSource.newCursor()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlTokenSource.newCursor()
方法的具体详情如下:
包路径:org.apache.xmlbeans.XmlTokenSource
类名称:XmlTokenSource
方法名:newCursor
[英]Returns a new XML cursor. A cursor provides random access to all the tokens in the XML data, plus the ability to extract strongly-typed XmlObjects for the data. If the data is not read-only, the XML cursor also allows modifications to the data. Using a cursor for the first time typically forces the XML document into memory.
[中]返回一个新的XML游标。游标提供了对XML数据中所有标记的随机访问,以及为数据提取强类型XML对象的能力。如果数据不是只读的,XML光标还允许修改数据。第一次使用游标通常会将XML文档强制放入内存。
代码示例来源:origin: org.apache.cxf/cxf-rt-databinding-xmlbeans
} else {
XmlTokenSource source = (XmlTokenSource)obj;
reader = source.newCursor().newXMLStreamReader(options);
代码示例来源:origin: com.github.livesense/org.liveSense.framework.xdocreport
XmlCursor cursor = source.newCursor();
cursor.selectPath( "./*" );
while ( cursor.toNextSelection() )
代码示例来源:origin: fr.opensagres.xdocreport/org.apache.poi.xwpf.converter.core-gae
XmlCursor cursor = source.newCursor();
cursor.selectPath( "./*" );
while ( cursor.toNextSelection() )
代码示例来源:origin: fr.opensagres.xdocreport/org.apache.poi.xwpf.converter.core
XmlCursor cursor = source.newCursor();
cursor.selectPath( "./*" );
while ( cursor.toNextSelection() )
代码示例来源:origin: fr.opensagres.xdocreport/org.apache.poi.xwpf.converter.core
try
cursor = token.newCursor();
cursor.selectPath( "./*" );
while ( cursor.toNextSelection() )
代码示例来源:origin: fr.opensagres.xdocreport/org.apache.poi.xwpf.converter.core-gae
try
cursor = token.newCursor();
cursor.selectPath( "./*" );
while ( cursor.toNextSelection() )
内容来源于网络,如有侵权,请联系作者删除!