booksellers2.xml

来自「javaP2P技术内幕课程111213141516源代码」· XML 代码 · 共 36 行

XML
36
字号
<?xml version="1.0" encoding="UTF-8"?>
<books xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://localhost:8080/xml/schemas/books.xsd">
	<book isbn="123456789">
		<title>Brain Surgery Explained</title>
		<author>
			<firstname>John</firstname>
			<lastname>Smith</lastname>
		</author>
		<retailer>
			<name>booksgalore</name>
			<sku>154-455</sku>
			<price>24.99</price>
		</retailer>
		<retailer>
			<name>seriousbooks</name>
			<sku>465-40-143</sku>
			<price>27.99</price>
		</retailer>
	</book>
	<book isbn="987654321">
		<title>DIY Surgery</title>
		<author>
			<firstname>Terry</firstname>
			<lastname>Mitchell</lastname>
		</author>
		<author>
			<firstname>Joe</firstname>
			<lastname>Mitchell</lastname>
		</author>
		<retailer>
			<name>seriousbooks</name>
			<sku>465-40-365</sku>
			<price>32.49</price>
		</retailer>
	</book>
</books>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?