读取XML节点 - .NET技术 / C#
谁能给个C#中读取XML节点的范例!
XmlDocument pXmlDocument = new XmlDocument();
pXmlDocument.Load(C:\\Config.xml);
XmlNode pDbConnNode = pXmlDocument.SelectSingleNode("ProConfig/Database/Conn");
m_sConn = pDbConnNode.InnerText;
XML code:
Ma Jin Hu 239000 Feng Huang StreetChu Zhou City ANHUI Wang Tian 239000 Lang Ya StreetHe Fei City ANHUI Zou Wen Biao 100000 Sai Di StreetBei Jin CityBei Jin
C# code:
using System ;using System.Drawing ;using System.Collections ;using System.ComponentModel ;using System.Windows.Forms ;using System.Data ;using System.Xml ;public class Form1 : Form{private Button button1 ;private ListView Listview1 ;private System.ComponentModel.Container components = null ;public Form1 ( ){//初始化窗体中的各个组件InitializeComponent ( ) ;}//清除程序中使用过的资源protected override void Dispose ( bool disposing ){if ( disposing ){if ( components != null ) {components.Dispose ( ) ;}}base.Dispose ( disposing ) ;}private void InitializeComponent ( ){button1 = new Button ( ) ;Listview1 = new ListView ( ) ;SuspendLayout ( ) ;button1.Anchor = ( ( AnchorStyles.Bottom | AnchorStyles.Left ) | AnchorStyles.Right ) ;b
相关问答:
可能因为工作的原因 接触数据库这块比较少,之前都是做程序这块,数据库这块都有专门的人来做 分工都很明细 所以对数据库这一块完全不了解。前段时间 去面试了几家公司 几乎都是在数据库这块挂掉的 连个简单的SQ ......
Private Sub Command1_Click()
Dim MyString() As String
Open "a.xml" For Binary As #1 ' 打开刚创建的文件。
ReDim MyString(LOF(1) - 1)
Put #1, , MyRecord ' 读入所有字符到变量中 ......
我有一个类似的xml的 string,想通过遍历怎么个xml 输出我想要的element的值
xml 为:
<Discover xmlns="urn:schemas-microsoft-com:xml-analysis">
<RequestType>DISCOVER_XML_ME ......
我从后台获取了下边一段html代码但我现在想吧<span></span>里的内容过滤去掉谁能给个好的,简单的方法
多谢各位了……
<html>
<body>
<div>
<sp ......