Java XML parser.
Very light. (less than 20K).
Bind XML to java classes. (like JAXB).
Written from scratch to avoid some legacy problems.
Code sample:
import javax.xml.bind.annotation.XmlElement;
import dummyxmlparser.XmlBinder;
public class Foo {
@XmlElement
public String counter;
public static void main(String[] args) throws Exception{
Foo foo= XmlBinder.fromXml(Foo.class, "<Foo><counter>42</counter></Foo>");
assert foo.counter.equals("42");
}
}
Follow DummyXmlParser
Other Useful Business Software
Haystack is a modern, engaging, and intuitive intranet platform that employees actually use.
With customizable iOS and Android mobile apps, Slack and Microsoft Teams integrations, and an intuitive design employees love, Haystack brings an outstanding digital employee experience to your entire workforce, no matter where their work takes them.
Rate This Project
Login To Rate This Project
User Reviews
Be the first to post a review of DummyXmlParser!