英语原文共 1 页,剩余内容已隐藏,支付完成后下载完整资料
毕业设计(论文)外文翻译
课题名称 |
JAVA核心技术第9版高级特性 |
|
|
2020 年 2 月 23 日
Core Java,Volume II Advanced Features (9th Edition)
Cay S. Horstmann,Gary Cornell
2.1. Introducing XML
In Chapter 10 of Volume I, you have seen the use of property files to describe the configuration of a program. A property file contains a set of name/value pairs, such as
fontname=Times Roman
fontsize=12
windowsize=400 200
color=0 50 100
You can use the Properties class to read in such a file with a single method call. Thatrsquo;s a nice feature, but it doesnrsquo;t really go far enough. In many cases, the information you want to describe has more structure than the property file format
can comfortably handle. Consider the fontname/fontsize entries in the example. It would be more object-oriented to have a single entry:
font=Times Roman 12
But then, parsing the font description gets ugly as you have to figure out when the font name ends and the font size starts. Property files have a single flat hierarchy. You can often see programmers work around that limitation with key names, such as
title.fontname=Helvetica
title.fontsize=36
body.fontname=Times Roman
body.fontsize=12
Another shortcoming of the property file format is the requirement that keys must be unique. To store a sequence of values, you need another workaround, such as
menu.item.1=Times Roman
menu.item.2=Helvetica
menu.item.3=Goudy Old Style
The XML format solves these problems. It can express hierarchical structures and is thus more flexible than the flat table structure of a property file.
An XML file for describing a program configuration might look like this:
lt;configurationgt;
lt;titlegt;
lt;fontgt;
lt;namegt;Helveticalt;/namegt;
lt;sizegt;36lt;/sizegt;
lt;/fontgt;
lt;/titlegt;
lt;bodygt;
lt;fontgt;
lt;namegt;Times Romanlt;/namegt;
lt;sizegt;12lt;/sizegt;
lt;/fontgt;
lt;/bodygt;
lt;windowgt;
lt;widthgt;400lt;/widthgt;
lt;heightgt;200lt;/heightgt;
lt;/windowgt;
lt;colorgt;
lt;redgt;0lt;/redgt;
lt;greengt;50lt;/greengt;
lt;bluegt;100lt;/bluegt;
lt;/colorgt;
lt;menugt;
lt;itemgt;Times Romanlt;/itemgt;
lt;itemgt;Helveticalt;/itemgt;
lt;itemgt;Goudy Old Stylelt;/itemgt;
lt;/menugt;
lt;/configurationgt;
The XML format allows you to express the hierarchy and record repeated elements without contortions.
The format of an XML file is straightforward. It looks similar to an HTML file. There is a good reason for that—both the XML and HTML formats are descendants of the venerable Standard Generalized Markup Language (SGML).
SGML has been around since the 1970s for describing the structure of complex documents. It has been used with success in some industries that require ongoing maintenance of massive documentation—in particular, the aircraft industry. However, SGML is quite complex, so it has never caught on in a big way. Much of that complexity arises because SGML has two conflicting goals. SGML wants to make sure that documents are formed according to the rules for their document type, but it also wants to make data entry easy by allowing shortcuts that reduce typing. XML was designed as a simplified version of SGML for use on the Internet. As is often true, simpler is better, and XML has enjoyed the immediate and enthusiastic reception that has eluded SGML for so long.
Note
You can find a very nice version of the XML standard, with annotations by Tim Bray, at www.xml.com/axml/axml.html.
Even though XML and HTML have common roots, there are important differences between the two.
bull; Unlike HTML, XML is case-sensitive. For example, lt;H1gt; and lt;h1gt; are different XML tags.
bull; In HTML, you can omit end tags, such as lt;/pgt; or lt;/ligt;, if it is clear from the context where a paragraph or list item ends. In XML, you can never omit an end tag.
bull; In XML, elements that have a single tag without a matching end tag must end in a /, as in lt;img src='coffeecup.png'/gt;. That way, the parser knows not to look for a lt;/imggt; tag.
bull; In XML, attribute values must be enclosed in quotation marks. In HTML, quotation marks are optional. For example, lt;applet code='MyApplet.class' width=300 height=300gt; is legal HTML but not legal XML. In XML, you have to
use quotation marks: width='300'.
bull; In HTML, you can have attribute names without values, such as lt;input type='radio' name='language' value='Java' checkedgt;. In XML, all attributes must have values, such as checked='true' or (ugh) checked='checked'.
2.1.1. The Structure of an XML Document
An XML document should start with a header such as
lt;?xml version='1.0'?gt;
or
lt;?xml version='1.0' encoding='UTF-8'?gt;
Strictly speaking, a header is optional, but it is highly recommended.
Note
Since SGML was created for processing of real documents, XML files are called documents even though many of them describe data sets that one would not normally cal
剩余内容已隐藏,支付完成后下载完整资料
资料编号:[253967],资料为PDF文档或Word文档,PDF文档可免费转换为Word
课题毕业论文、文献综述、任务书、外文翻译、程序设计、图纸设计等资料可联系客服协助查找。