1. 程式人生 > >.net程式設計師十大必學之一的xml實現類

.net程式設計師十大必學之一的xml實現類

動態建立xml節點

一、需求分析

網站中英版切換,網站資訊儲存於xml檔案當中,如果XML節點為空,則建立節點並設定預設值。

二、.net其他操作

1、簡單介紹


2、具體例項

在C#.net中如何操作XML
需要新增的名稱空間:


方法二:
結果:
<?xml version="1.0" encoding="gb2312"?>
<Employees>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
</Employees>

2,新增一個結點:

結果:在xml原有的內容裡添加了一個結點,內容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node genre="張三" ISBN="1-1111-1">
    <title>C#入門幫助</title>
    <author>高手</author>
    <price>158.3</price>
  </Node>
</Employees>

3,修改結點的值(屬性和子結點):

結果:將原來的所有結點的資訊都修改了,xml的內容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node genre="update張三" ISBN="1-1111-1">
    <title>C#入門幫助</title>
    <author>亞勝</author>
    <price>158.3</price>
  </Node>
</Employees>

4,修改結點(新增結點的屬性和新增結點的自結點):

結果:每個結點的屬性都添加了一個,子結點也添加了一個,內容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
  <Node genre="李贊紅" ISBN="2-3631-4" test="111111">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
    <flag>1</flag>
  </Node>
  <Node genre="李贊紅" ISBN="2-3631-4" test="111111">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
    <flag>1</flag>
  </Node>
  <Node genre="update張三" ISBN="1-1111-1" test="111111">
    <title>C#入門幫助</title>
    <author>亞勝</author>
    <price>158.3</price>
    <flag>1</flag>
  </Node>
</Employees>

5,刪除結點中的某一個屬性:

結果:刪除了結點的一個屬性和結點的一個子結點,內容如下,
<?xml version="1.0" encoding="gb2312"?>
<Employees>
  <Node ISBN="2-3631-4" test="111111">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node ISBN="2-3631-4" test="111111">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node ISBN="1-1111-1" test="111111">
    <title>C#入門幫助</title>
    <author>亞勝</author>
    <price>158.3</price>
  </Node>
</Employees>

6,刪除結點:

結果:刪除了符合條件的所有結點,原來的內容:

<?xml version="1.0" encoding="gb2312"?>
<Employees>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node genre="張三" ISBN="1-1111-1">
    <title>C#入門幫助</title>
    <author>高手</author>
    <price>158.3</price>
  </Node>
  <Node genre="張三" ISBN="1-1111-1">
    <title>C#入門幫助</title>
    <author>高手</author>
    <price>158.3</price>
  </Node>
</Employees>

刪除後的內容:
<?xml version="1.0" encoding="gb2312"?>
<Employees>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
  <Node genre="李贊紅" ISBN="2-3631-4">
    <title>CS從入門到精通</title>
    <author>候捷</author>
    <price>58.3</price>
  </Node>
</Employees>

 7,按照文字檔案讀取xml


3、高階應用 


<aaa>
     <bb>something</bb>
     <cc>something</cc>
</aaa>
 
<aaa>
    <add key="123" value="321"/>
</aaa>

  

<aaa>
    <add key="123" value="321"/>
</aaa>
如果我要找到123然後取到321應該怎麼寫呢?
 
  
 
/*第三種方法:  SelectSingleNode  讀取兩種格式的xml *---/
--------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
       <ConnectionString>Data Source=yf; user id=ctm_dbo;password=123</ConnectionString>            
  </appSettings>
</configuration>
--------------------------------------------------------------------------
********************************************************************
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <appSettings>
       <add key="ConnectionString" value="Data Source=yf; user id=ctm_dbo;password=123" />            
  </appSettings>
</configuration>