给我一份xml报文实例
时间: 2023-11-25 08:05:55 浏览: 116
关于xml示例
下面是一个简单的XML报文实例:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<bookstore>
<book category="children">
<title lang="en">Harry Potter</title>
<author>J.K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="web">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>
```
在这个示例中,有一个`<bookstore>`元素,它包含两个`<book>`元素。每个`<book>`元素都有一个`category`属性,分别为`"children"`和`"web"`。每个`<book>`元素包含一个`<title>`元素、一个`<author>`元素、一个`<year>`元素和一个`<price>`元素。`<title>`元素有一个`lang`属性,值为`"en"`。
阅读全文