[
Lists Home |
Date Index |
Thread Index
]
I've designed and implemented a simple XML Parser in Java called XML Tokenizer. It works like the StringTokenizer in Java,
returning a 2-tuple of token type, and token text.
You can find more, including a sample application, and documentation (JavaDoc/UML diagrams) at:
http://www.xmltokenizer.com
The goal is a way to manipulate XML without the overhead of a full blown parser. But if you want documentation validation, or even to
check for well-formedness, you have to implement it.
This is the 1.0 release, so there will certainly be bugs in both the documents and the implementation.
I plan to continue to refine both the design and the implementation. Comments, suggestions, and input is welcome.
Cheers,
Will
|