Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write in Java. Is there any sample code available in this regard?

share|improve this question
i tried executing the above mentioned code, it displays only the starting tag and nothing more – volcano Apr 9 '11 at 5:50

1 Answer

You could use Apache XmlSchema library (http://ws.apache.org/commons/xmlschema14).

The idea is to create the instance of XmlSchema class that represents your schema:

InputStream is = new FileInputStream(fileName);
XmlSchemaCollection schemaCol = new XmlSchemaCollection();
XmlSchema schema = schemaCol.read(new StreamSource(is), null);

and use it to obtain information about elements and types specified by your schema. You could for instance enlist all element names:

XmlSchemaObjectTable objTable = schema.getElements();
Iterator elementNames = objTable.getNames();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.