XML Basic

XML声明:

<?xml version="1.0" encoding="UTF-8"?>


XML中属性的value值要被引号(单引号or双引号)引起来,如:

<note date="12/11/2007">
  <to>Tove</to>
  <from>Jani</from>
</note>


XML元素中有<,>,&,'," 时用实体引用:

&lt; < less than
&gt; > greater than
&amp; & ampersand
&apos; ' apostrophe
&quot; " quotation mark
如:
<message>if salary < 1000 </message>
错误
<message>if salary &lt; 1000</message>
正确。


XML中的注释:

<!-- this is a comment -->

空的XML元素:

<book></book>
<book />

matadata可以用属性来描述,data用元素来描述。


解决命名冲突:

<h:table>
  <h:tr>
    <h:td>Apples</h:td>
    <h:td>Bananas</h:td>
  </h:tr>
</h:table>

<f:table>
  <f:name>African Coffee Table</f:name>
  <f:width>80</f:width>
  <f:length>120</f:length>
</f:table>

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...