Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "User:Rick.barkhouse.oracle.com/VTD"

(Removing all content from page)
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
=VTD-XML Investigation=
 
  
VTD-XML ([http://vtd-xml.sourceforge.net/|http://vtd-xml.sourceforge.net/])
 
 
==VTD-XML Core Concepts==
 
 
===Unmarshalling a VTD-XML document===
 
 
<div style="width:900px">
 
<source lang="java">
 
VTDGen vg = new VTDGen();
 
 
// from existing byte[]
 
// true indicates namespace aware
 
vg.setDoc(byte[]); vg.parse(true);
 
 
// - or -
 
 
// from file
 
vg.parseFile("old.xml",false)
 
</source>
 
</div>
 

Latest revision as of 15:47, 14 December 2012

Back to the top