Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML examples and use cases

Status
Not open for further replies.

ankursaxena

Programmer
Sep 7, 2001
133
US
Hi! I am new to XML and would really like to know some uses cases of where is it best to use xml and if there are parsers available for c++ and java and how to use them.

also if there are tutorials available for XML and use of XML with java and c++ that would be great.

thanx a lot in advance.

Ankur
 
Try the links in "Partners" section of this page.

There are several parsers available, falling into 2 main cathegories: SAX parsers and DOM parsers. There is really a lot to talk about them. Do a search for the above and try to ask some more specific questions.

DOM and SAX are available for C++ AND JAVA.

As for use cases, any hierarchical database can be expressed in XML. Actually... just about anything can be expressed... Even HTML can be regarded as a subset of XML.

The simplest definition:

XML =
<Tag>
<Tag1> ...
<Tag1>
</Tag>...

[red]Nosferatu[/red]
We are what we eat...
There's no such thing as free meal...
once stated: methane@personal.ro
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top