Can someone please explain to me what does parse XML means? and What does XML parser do in general?
|
closed as not a real question by marc_s, tenfour, ho1, Ian Ringrose, sixlettervariables Feb 28 '11 at 17:50
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
It means "reading" the XML file/string and getting its content according to the structure, usually to use them in a program. For example if you have this XML fragment:
you may want to use these values in a data structure:
so that, in the end:
yelds something like:
There are many ways of doing so, like DOM or SAX. You might want to investigate XSLT and xpath as well, according to your needs. |
||||
|
|
|
Usually some information is stored in xml documents. In order to use this information in your program you have to parse it - read line by line or node by node and fetch pieces of information. |
|||
|
|
|
||||
|
|
|
XML: Extensible Markup Language is a set of rules for encoding documents electronically. It is defined in the produced by the W3C and several other related specifications; all are fee-free open standards. Parser: a computer program that divides code up into functional components; "compilers must parse source code in order to translate it into object code" |
|||
|
|
|
An XML parser converts an XML document into an XML DOM object - which can then be manipulated with a JavaScript. |
|||
|
|