{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

深入理解C#中的XML(附CD-ROM光盘1张)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

深入理解C#中的XML(附CD-ROM光盘1张)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Editer Recommend

全面、深入探讨C#与XML开发Windows应用程序的方法和技术
C#和XML是当今比较热门的计算机技术,C#是微软公司全力打造的核心编程语言,XML已成为数据传输的一种事实上的工业标准。本书以VisualStudio.NET为开发平台,以实例为中心,全面介绍了C#与XML开发Windows应用程序的方法和技术。随书光盘附带全书中所有实例源代码。
Content Description

《深入理解C#中的XML》主要讲述C#软件开发中的XML的功能,全书共10章,分别介绍了XML基础语法、应用文档对象模型、用XSLT转换XML文档、利用DTD和XSDSchema验证XML文档、XML文档的读取、ADO.NET的相关知识、.NETFramework3.5后支持的新技术WCF和LINQ、XML在WCF中的应用以及XML序列化和SOAP序列化的相关知识。
本书适合于对C#编程语言感兴趣,想更深入学习C#与XML语言在Windows编程中的技术相关人员。
Catalogue

第1章 XML简介
1.1 什么是XML
1.2 使用XML的好处
1.3 XML语法
1.3.1 XML标记、元素和属性
1.3.2 XML的语法规则
1.3.3 XML名称命名规则
1.3.4 XML实体引用
1.3.5 XML CDATA区
1.3.6 XML注释
1.3.7 XML声明
1.3.8 格式正确的XML文档
1.3.9 XML命名空间
1.4 DTD和XML Schema
1.5 解析XML文档
1.6 XPath介绍
1.7 XSLT介绍

第2章 使用文档对象模型操作XML文档
2.1 文档对象模型概述
2.2 DOM实现
2.3 应用实例
2.3.1 装载XML文档
2.3.2 遍历XML文档
2.3.3 查询特殊元素和节点
2.4 修改XML文档
2.4.1 Save方法
2.4.2 XmlDocumentFragment类
2.4.3 XmlElement类
2.4.4 添加节点到XML文档中
2.4.5 删除和更换节点
2.4.6 XML片段插入到XML文档
2.4.7 添加属性到节点中
2.5 综合实例
2.6 处理空白
2.7 处理命名空间
2.8 XmlDocument类的事件

第3章 应用XPath操作XML文档
3.1 XPath介绍
3.2 XPath数据模型

第4章 用XSLT转换XML文档
4.1 XSLT简介
4.1.1 XSLT的基本转换过程
4.1.2 XSLT语法
4.2 XsICompiledTransform类
4.2.1 使用XslCompiledTransform类执行转换
4.2.2 传递参数到XSLT样式表
4.2.3 应用扩展对象

第5章 验证XML文档
5.1 XML SChema
5.1.1 XSD
5.1.2 XML Schema数据类型
5.2 定义XML文档的结构
5.2.1 创建DTD文件
5.2.2 创建XSD Schema
5.3 利用DTD和XSD Schema验证XML文档
5.3.1 应用DTD
5.3.2 应用XSD Schema
5.4 用XmIReader类验证XML文档
5.5 用XmlDocument类验证XML文档
5.6 用XPath导航器验证XML文档
5.7 验证未声明XSD Schema文件位置的XML文档

第6章 读/写XML文档
6.1 XmlReader和XmlWriter类简介
6.2 用XmlTextReader类读XML文档
6.2.1 读取元素属性和值
6.2.2 遍历XML文档
6.3 编写XML文档
6.4 综合实例

第7章 XML和ADO.NET
第8章 WCF与XML
第9章 LINQ与XML
第10章 XML序列化
参考文献
Book Abstract

第1章 XML简介
XML是英文Extensible Markup Language 的缩写,XML作为应用程序中的一种数据传输方式在.Net框架中得到了广泛的支持。本章的主要内容:
* XML的特性;
* XML的语法规则;
* 简介XML的相关技术,如:DTD、XSLT、XPath等。
1.1 什么是XML
XML是一种标记语言,用于描述数据,它提供了一种标准化的方式来表示文本数据。XML本身对数据不能完成任何操作,必须使用一种叫做解析器(parser)的软件来处理数据。与HTML语言不同,XML的重点是如何表示数据。在XML文档中,用户可以自由地定义和使用自定义的标记。XML文档以.xml为后缀,编写XML文档时,不需要特别的软件,只需要一个文本编辑器就可以,比如记事本程序。
现在你对XML已经有一个大概的概念了,让我们来看一个简单的XML文档:



The Book Thief
25
10


通过这个XML文档的例子,我们对XML也有了一个初步的认识。XML文档的第一行是 XML 声明,定义了XML的版本和使用的字符编码。在这个例子中,XML遵守的版本是 1.0,使用的字符编码是UTF-8字符集。该XML文档有一个根元素books,books根元素下又有3个元素,分别是 title、price、quantity。每个 XML 元素都以一个起始标记(opening tag)开始 ,以一个结束标记(closing tag)收尾,比如 就是一个起始标记, 就是一个结束标记。起始标记以 < 开始,以 > 结束。结束标记以 结束。XML元素可以带有属性,属性值要加引号,比如ISBN 就是 books 的属性,属性值为9787544238212。XML 的标记(tag)是可以自定义的,用来描述数据,比如例子中的title 元素,The Book Thief
title 标记表示这个元素内的数据是书名,The Book Thief 就是一个具体书名。
你可以修改标记,比如写成
The Book Thief

由于XML的标记可以随意定义,我们可以用 XML描述和存储各种内容的数据。这里举的只是一个有关书的XML文档例子,你还可以创建其他XML文档,比如有关电影的,或者家具的,等等。也就是说,各种内容的数据,都可以通过XML描述和存储起来。XML 文档是一棵节点树。一个XML 文档只有一个根节点。在例子中,books就是根节点,books下面有子节点 title、price、quantity。
根据上面的例子,我们对XML有了一个大致的了解。总的来说,有以下几个要点。
* XML是一种可扩展的标记语言(Extensible Markup Language)。
* XML的标记(tag)没有被预定义,用户可以自行定义标记来描述数据。
* XML主要用来描述和存储数据。
* XML具有自我描述性。
* XML是树状结构的文档,是个结构化的文档。
* XML文档是个文本文件。
1.2 使用 XML 的好处
使用XML的好处如下。
* 易携带和传输。
* XML文档不依赖于特殊的软件,只要有个文本编辑器,就可以编写 XML 文档,而且是存成文本格式。一个XML文档就是一个小小的文本文件,易于携带和传输。
* 易于共享和跨平台。
* XML本身是个文本文件,而且是结构化的数据,很容易被各系统读取。
* 易于查询。
* 因为XML是树状结构,易于查询。
1.3 XML 语法
编写XML必须遵循一些简单的语法规则,主要列举如下。
* 每个开始标记必须有结束标记。
* 一个XML文档只能有一个根元素。
* 所有XML元素必须正确嵌套。
* 属性值必须加引号。
* 一个元素不能有相同的属性。
1.3.1 XML标记、元素和属性
在解释上面的语法规则之前,我们先解释一些XML最常用的术语。
* 标记(开始标记,结束标记)
在上面的XML文档中,我们看到有很多这样的相同特征的字符串,、<price>、<quantity>、</books> 等。它们都是由小于号< 开始,由大于号>结束的,在XML文档里,我们将其称为XML标记。标记又有开始标记和结束标记之分。开始标记由<开始,由>结束,比如:<title>、<price>、<quantity>。结束标记由 </开始,由>结束,比如:、、。
* 元素
XML元素是指从一个开始标记到它的结束标记的一段内容。比如:The book thief 就是一个元素。元素是XML文档的基本单位,一个XML文档可以由一个或者多个元素构成。
* 属性(attribute)
一个元素可以带有属性,属性写在开始标记里,写在元素名称的后面。比如,其中 ISBN ="9787544238212" 就是 books 元素的一个属性,ISBN是属性的名称,9787544238212 是属性值,属性值必须加引号。
1.3.2 XML的语法规则
接下来我们逐个解释XML文档的语法规则。
每个开始标记必须有结束标记,比如上面的例子中,开始标记 必须有相应的结束标记。一个XML文档只能有一个根元素,XML文档是树状结构的,像一棵节点树。比如上面例子中,books就是根元素,而title、price、quantity则是 books的子 节点。
如果写成下面这样,一个文档有两个 books 根元素,就出错了。



偷书贼
25
10


香水
100
12


所有XML元素必须正确嵌套。
正确的嵌套:

香水

错误的嵌套:

香水</books>
属性值必须加引号。
一个XML元素可以带有属性(attribute),属性写在开始标记里,写在元素名称的后面。比如,其中ISBN ="9787544238212"就是 books元素的一个属性,ISBN是属性的名称,9787544238212是属性值,属性值必须加引号。一个元素不能有相同的属性,下面的写法是错误的:



因为一个XML元素不能有两个相同的属性名称,虽然属性值不同。
不过,如果你将ISBN小写,写成如下:



就是对的。因为XML文档是区分大小写的。ISBN 和isbn表示两个不同的属性。
XML元素是XML文档的基本单位。一个XML文档由一个或者多个XML元素构成。比如woyouxian.net 就是一个XML元素,也可以是一个最简单的XML文档。一个XML元素从一个起始标记开始,到对应的结束标记结束。在起始标记和结束标记之间的内容,我们称为XML元素的内容。比如woyouxian.net 就是元素woyouxian.net 的内容。
如果一个XML元素没有内容,比如我们称其为空元素。
空元素有一种特殊的写法,以<开始,然后是元素名称,最后以/>结束。比如, 。XML文档是区分大小写的,比如就表示两个不同的元素。这一点在编写XML文档时要非常注意。XML文档是树状结构的,它只有一个根元素,其他元素都是根元素的后代。比如下面的例子:

……

Introduction

C#和XML是当今比较热门的计算机技术,C#是微软公司全力打造的核心编程语言,XML事实上已成为数据传输的一种工业标准。本书以Visual Studio.NET为开发平台,以实例为中心,全面介绍了C#与XML开发Windows应用程序的方法和技术。
本书层次是这样安排的,全书共10章,它们既相互关联又各自为篇。第1章介绍XML的格式和语法,这些知识是理解其他各章节的必备基础知识。第2章与第3章讲述应用文档对象模型和XPath操作XML文档。第4章展示用XSLT转换XML文档。第5章介绍利用DTD 和XSD Schema验证XML文档的技术。第6章应用XmlReader和XmlWriter读/写XML文档。第7章讲述ADO.NET的相关知识,以及如何应用它操作XML。第8章和第9章介绍.NET Framework 3.5后支持的新技术WCF和LINQ,以及XML 在WCF中的角色和LINQ对XML的操作。第10章讲述XML序列化和SOAP序列化的相关知识。
本书的每一章都是从实际例子来讲述各种与C#和XML相关的知识和技术,对涉及的类及函数给出了详细的解释。具体特点如下:
* 讲述的所有技术,既可在Visual Studio 2005中实现,也可在Visual Studio 2008中实现,无须任何更改;
* 涵盖了C#的XML技术的各个方面,即适合初学者,也适合于具有一定C#编程经验的读者;
* 所有的技术要点均采用示例程序的方式加以讲解,避免了枯燥的理论解释;
* 在较为复杂的综合示例程序中,提供了在C#编程中比较常用但又不易掌握的技术难点,如:自定义控件、控件间的互动及范型等,并在书中详细地加以解释。
如果你对于C#编程语言有兴趣,同时又具有一定的XML经验,或想更深入地了解C#与XML在开发Windows应用程序的技术,那么这本书将为你提供一条学习的捷径。

编 者
2012年2月

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book