Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

User:Rick.barkhouse.oracle.com/VTD

VTD-XML Investigation

VTD-XML Core Concepts

Unmarshalling a VTD-XML document

    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)

Back to the top