Questions tagged [vtd-xml]

Virtual Token Descriptor for eXtensible Markup Language (VTD-XML) refers to a collection of cross-platform XML processing technologies centered on a non-extractive XML, "document-centric" parsing technique called Virtual Token Descriptor (VTD).

Virtual Token Descriptor for eXtensible Markup Language (VTD-XML) refers to a collection of cross-platform XML processing technologies centered on a non-extractive XML, "document-centric" parsing technique called Virtual Token Descriptor (VTD). Depending on the perspective, VTD-XML can be viewed as one of the following:

  • A "Document-Centric" XML parser
  • A native XML indexer or a file format that uses binary data to enhance the text XML
  • An incremental XML content modifier
  • An XML slicer/splitter/assembler
  • An XML editor/eraser
  • A way to port XML processing on chip
  • A non-blocking, stateless XPath evaluator

VTD-XML is developed by XimpleWare and dual-licensed under GPL and proprietary license. It is originally written in Java, but is now available in C, C++ and C#.

Download vtd-xml at https://vtd-xml.sourceforge.io/

Here are a few articles describing how to code applications in VTD-XML

190 questions
0
votes
1 answer

vtd-xml xpath, how to use variable expression?

I'm trying to get definitions for a specific word which match to user's input string from an xml:
a ένας, μια, μία,…
0
votes
1 answer

Creating XML using VTD XMLModifier

Would you recommend using XMLModifier to generate XML from ground up? Or just use whatever java has like XMLWriter?
sincang
  • 119
  • 5
0
votes
1 answer

VTD XML navigating to child nodes which are siblings to first child

My XML what I have .. ap.selectXPath("/catalog/item"); while ((result = ap.evalXPath()) != -1)…
Chansdad
  • 120
  • 2
  • 4
0
votes
0 answers

Populate Pojo Object using vtd

I am looking for a smart way to auto-populate my java pojo object with xml data parsed by vtd-xml. I referred this link http://www.onjava.com/pub/a/onjava/2007/09/07/schema-less-java-xml-data-binding-with-vtd-xml.html?page=2 But since I am having a…
Saurabh Mishra
  • 1,511
  • 1
  • 11
  • 7
0
votes
1 answer

Using VTD-XML with node.js

VTD-XML looks like something a perfect solution to a problem I've had for a long time, random access to very large XML files (in my case MediaWiki dump files like those for Wiktionary). The question is, is there a way to use VTD-XML from node.js? I…
hippietrail
  • 15,848
  • 18
  • 99
  • 158
0
votes
0 answers

VTD-XML how to handle one-many relationship with in xpath

Facing an issue while using VTD-XML to parse the xml using large xpath which has, 1) one - many relationship with xml elements with in a single xpath for example, BMW
Selvakumar Esra
  • 1,154
  • 2
  • 15
  • 30
0
votes
1 answer

Remove a node from xml using vtd in java

..... .... . . . I want to delete the complete node of which is having id=2 from its parent node. how to do this with Java? Thanks in Advance.
Rakesh Mahapatro
  • 866
  • 5
  • 12
0
votes
1 answer

vtd-xml: Autopilot: registering a function in Autopilot

Java VTD-XML has the following API class AutoPilot{ declareVariableExpr(java.lang.String varName, java.lang.String varExpr); } how can i register a function in the VTD-XML Autopilot? for example i want to evaluate the following…
weima
  • 4,653
  • 6
  • 34
  • 55
-2
votes
0 answers

How I can use two different java files together

Somebody has created an VTD-XML PARSER and he used another java program named as FileFilterDateIntervalUtils and called it in main program. But when I'm running the program, it's showing. " error: cannot find symbol FileFilterDateIntervalUtils…
-2
votes
1 answer

Using VTD-XML to get attribute name and value

I am writing a code to read attribute name and value from a XML String but my nodes are represented as for example hi:collection so the compiler is taking it as a URL and throwing the error No URL found for prefix:hi import…
codehacker
  • 381
  • 5
  • 15
1 2 3
12
13