I have an XML schema file. I want to use Java to open this file, find all elements, extract their names, and write them to a text file. I have tried various libraries, but I could not get this to work. Please suggest any libraries or other methods that will work.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
XSD files are XML files so you can use any suitable XML processing library to parse it. |
|||
|
|
|
I don't think you'll find a library that exists for your purpose, you'll have to write one yourself. The XSD is simply an XML file that conform to the schema: Traverse the file as normal using DOM or SAX or whatever your preference is. |
|||||||||
|
|
I assume you are looking for the information conveyed by the XML Schema. I would recommend you the XSOM library, it takes away dealing with the XML itself; nonetheless, a basic understanding of what can be described by an XSD is most likely required. Follow the user guide, there are some examples showing how to move towards what you need. |
||||
|
|
