An introduction to XML
What is XML? XML, or eXtensible Markup Language was created by the World Wide Web Consortium (W3C) to overcome the limitations of HTML. While the HTML tags tell a browser how to display this information, the tags don't tell the browser what the information is . With XML, you can assign some meaning to the tags in the document, which can be processed by the machine. A simple XML File <? xml version = "1.0" encoding = "UTF-8" ?> <blog> <post id = "1" value = "post1" > <title> Serialization in Java </title> <author> Dev </author> <date> 05/06/2012 </date> <url> http://techiesinsight.blogspot.in/2012/06/serialization-in-java.html </url> </post> <post id = "2" value = "post2" > <title> serialVersionUId in Java Object Serialization </title> <author> Dev </aut...