org.apache.xmlbeans.XmlTokenSource.newCursor()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(95)

本文整理了Java中org.apache.xmlbeans.XmlTokenSource.newCursor()方法的一些代码示例,展示了XmlTokenSource.newCursor()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlTokenSource.newCursor()方法的具体详情如下:
包路径:org.apache.xmlbeans.XmlTokenSource
类名称:XmlTokenSource
方法名:newCursor

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() )

相关文章