Can you walk us through the steps necessary to parse XML
documents?
Answers were Sorted based on User's Feedback
Answer / chandrasekhar
1.create a instance of DocumentBuilderFactory Object using
newInstance() method.
2.get reference to DocumentBuilder object using
newDocumentBuilder() method of DocumentBuilderFactory.
3.get reference to Document object of the xml file to be
parsed by using DocumentBuilder.parse(File xmlfile) with
File object as argument.
start using Document object to get the elements of the xml
file using getElementsByTagName(),getElementsByName()
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / guest
Superficially, this is a fairly basic question. However, the
ball is not to determine whether candidates understand the
concept of a parser but rather have them walk through the
process of parsing XML documents step-by-step. Determining
whether a non-validating or validating parser is needed,
choosing the appropriate parser, and handling errors are all
important aspects to this process that should be included in
the candidate's response.
| Is This Answer Correct ? | 4 Yes | 0 No |
When should I use a cdata marked section?
Why should I use xml?
What are possible ways XML used in j2ee WebApplication.Like storing data in to database and for data transfer .Apart from this any uses.
How do I set up google rss feed?
Do xml namespaces apply to entity names, notation names, or processing instruction targets?
How does xml handle metadata?
What are the different types of parts used in xsl?
What are the limitations of dtd?
How does xml handle white-space in my documents?
What are the element naming conventions in XML ?
What is xml and its advantages?
Define xlink and xpointer?