Library tutorials & articles
Extensible Markup Language (XML) Tutorial
Introduction
The Extensible Markup Language (XML) is a subset of the Standard Generalised Markup Language (SGML), the standard for creating markup documents. Unlike HTML, another markup language based on SGML, XML allows you to describe data and its structure rather than display it. XML is not a replacement for HTML, but compliments it by allowing the author to describe their own tags. XML is extensible as the author can create an unlimited number of tags. There are no predefined tags in XML.
All XML documents should start with a processing instruction to inform the XML parser of the version of XML being used.
<?xml version="1.0" ?>
XML is incredibly easy to learn! It's just a case of defining the structure of your data, and creating some rules for the data in the form of a Document Type Definition. The usefulness of XML comes from its intrinsic property of separating the data from the presentation.
Related articles
Related discussion
-
Reading XML file using XSD in VB 6.0
by maxtorjunk (0 replies)
-
Read and write Open XML files (MS Office 2007)
by bitkisel (6 replies)
-
A simple way to read an XML file in Java
by h.ibrahim (33 replies)
-
Read HTML tags in XML Reader
by jhuerta (6 replies)
-
Help with XMLWriter
by Thulasee (1 replies)
Related podcasts
-
Java Posse #202 - Newscast for Aug 22nd 2008
Newcast for August 22nd, 2008Fully formatted shownotes can always be found at http://javaposse.com Sadly, Java does not run on the Mars LanderThe Golden Gate Project http://research.sun.com/projects/goldengate/Space surveillance radar http://www.sun.com/aboutsun/pr/2008-04/sunflash Google has r...
Beutiful article. Takes a user from a beginner level to an intermediate level very nicely. Certainly a treat for beginers and an expert alike.
Good article for starters
This thread is for discussions of Extensible Markup Language (XML) Tutorial.