XML documents must adhere to certain rules to be well formed. : Well Formed « Introduction « XML Tutorial

Home
XML Tutorial
1.Introduction
2.Namespace
3.XML Schema
4.XPath
5.XSLT stylesheet
XML Tutorial » Introduction » Well Formed 
1.3.1.XML documents must adhere to certain rules to be well formed.
Every start-tag must have a matching end-tag, or be a self-closing tag. 
Every element must have a closing tag. 
Empty tags can either use an all-in-one opening and closing tag with a slash before the final > or a separate closing tag.

<?xml version="1.0" ?>
<animal>
    <name>T1</name>
    <picture filename="tiger.jpg"/>
</animal>

Tags can't overlap and elements must be properly nested. 
XML documents can have only one root element. 
The only pieces of XML allowed outside (precedingthe root element are comments and processing instructions.

<?xml version="1.0" ?>
<animal>
    <name>T1</name>
</animal>

Element names must obey XML naming conventions. 
XML is case sensitive. 
The namel, Name, and NAME elements are considered completely separate and unrelated.

<name>T1</name>
<Name>T1</Name>
<NAME>T1</NAME>
1.3.Well Formed
1.3.1.XML documents must adhere to certain rules to be well formed.
1.3.2.XML Naming Conventions
1.3.3.Case Sensitivity
1.3.4.Writing Non-Empty Elements
1.3.5.Nesting Elements
1.3.6.Empty Elements
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.