We have an XML file, generated from LDAP. It does start with Docroot, but there is no DTD declaration. We tried generating DTD, but there are simply too many variants and we were told every one else process the file manually (with out DTD or schema). We know what we need to read from XML and the format of the document will not change. So, my question is what is the simplest way to read this XML file?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I'd use Xstream. It doesn't require a schema. You can use annotations and/or naming conventions to drive the mapping. Since you don't have a schema you might get some quirky behavior if your xml is malformed, but its better than nothing. |
|||
|
|
|
|
|||||||||
|
|
Most non-validating XML parsers will read your XML file even when it doesn't declare a DTD. The list is long and varied but as nsyfn55 suggested you can use Xstream - it's very fast. |
|||
|
|