1SAX.setDocumentLocator()
2SAX.startDocument()
3SAX.startElement(html)
4SAX.ignorableWhitespace(
5, 1)
6SAX.startElement(head)
7SAX.ignorableWhitespace(
8, 1)
9SAX.startElement(meta, name='Author', content='Root <root@aol.com>')
10SAX.endElement(meta)
11SAX.ignorableWhitespace(
12, 1)
13SAX.endElement(head)
14SAX.ignorableWhitespace(
15, 1)
16SAX.endElement(html)
17SAX.ignorableWhitespace(
18, 1)
19SAX.endDocument()
20