Trong XML, muốn viết được các ký tự đặc biệt cần phải tuân theo quy tắc sau:
Ký tự tên | Tham chiếu thực thể | Ký tự tham khảo | Số tham chiếu |
---|---|---|---|
Ký | & amp; | & | & #38; #38; |
Khung góc trái | & lt; | < | & #38; #60; |
Góc bên phải khung | & gt; | > | & #62; |
Dấu nháy thẳng | & quot; | " | & #39; |
Nháy đơn | & apos; | ' | & #34; |
Ví dụ viết như sau thì bộ phân tách xml sẽ không hiểu.
<?xml version="1.0" standalone="yes"?>
<Customers>
<Customer>
<CustomerID>BLAUS</CustomerID>
<CompanyName>Blauer See Delikatessen</CompanyName>
<ContactName>Hanna Moos</ContactName>
<Region>test<ing</Region>
</Customer>
<Customer>
<CustomerID>SPLIR</CustomerID>
<CompanyName>Split Rail Beer & Ale</CompanyName>
<ContactName>Art raunschweiger</ContactName>
<Region>WY</Region>
</Customer>
</Customers>
mà phải viết<?xml version="1.0" standalone="yes"?> <Customers> <Customer> <CustomerID>BLAUS</CustomerID> <CompanyName>Blauer See Delikatessen</CompanyName> <ContactName>Hanna Moos</ContactName> <Region>test& lt;ing</Region>
</Customer> <Customer> <CustomerID>SPLIR</CustomerID> <CompanyName>Split Rail Beer & amp; Ale</CompanyName>
<ContactName>Art raunschweiger</ContactName>
<Region>WY</Region>
</Customer>
</Customers>
No comments :
Post a Comment