sonnet.xml 這是在本教程中貫穿使用的示例 XML 文檔。 <?XML version="1.0"?> <!DOCTYPE sonnet SYSTEM "sonnet.dtd"> <sonnet type="Shakespearean"> <author> <last-name>Shakespeare</last-name> <first-name>William</first-name> <nationality>British</nationality> <year-of-birth>1564</year-of-birth> <year-of-death>1616</year-of-death> </author> <title>Sonnet 130</title> <text> <line>My mistress` eyes are nothing like the sun,</line> <line>Coral is far more red than her lips red.</line> <line>If snow be white, why then her breasts are dun,</line> <line>If hairs be wires, black wires grow on her head.</line> <line>I have seen roses damasked, red and white,</line> <line>But no sUCh roses see I in her cheeks.</line> <line>And in some perfumes is there more delight</line> <line>Than in the breath that from my mistress reeks.</line> <line>I love to hear her speak, yet well I know</line> <line>That music hath a far more pleasing sound.</line> <line>I grant I never saw a goddess go,</line> <line>My mistress when she walks, treads on the ground.</line> <line>And yet, by Heaven, I think my love as rare</line> <line>As any she belied with false compare.</line> </text> </sonnet> sonnet.dtd 這是我們示例文檔所用的 DTD。 <!-- sonnet.dtd --> <!ELEMENT sonnet (author,title?,text) > <!ATTLIST sonnet type (Shakespearean Petrarchan) "Shakespearean"> <!ELEMENT text (line,line,line,line, line,line,line,line, line,line,line,line, line,line) > <!ELEMENT author (last-name,first-name,nationality, year-of-birth?,year-of-death?) > <!ELEMENT title (<!ELEMENT last-name (<!ELEMENT first-name (<!ELEMENT nationality (<!ELEMENT year-of-birth (<!ELEMENT year-of-death (<!ELEMENT line ( domOne.java 這是我們的第一個 DOM 應用。它解析一個 XML 文檔并將其內容輸出到標準輸出。 /* * (C) Copyright IBM Corp. 1999 All rights reserved. * * US Government Users Restricted Rights Use, duplication or * disclosure restricted by GSA ADP Schedule Contract with IBM Corp. * * The