C#对一个简单的xml文件的操作

    在做一个C/S结构的项目时,登录窗口上有对数据库连接信息的使用。就是server,uid,pwd,当第一次登录时用户输入相应的数据库连接信息,就会保存到一个xml文件里,下一次再登录时就可直接读取譔文件里的数据库连接信息。当然在使用操作xml的类要引用xml了,using system.xml;

简单的数据库信息xml文件结构如下:
None.gif <? xml version="1.0" encoding="gb2312" ?>
None.gif
< server >
None.gif  
< IP > . </ IP >
None.gif  
< Uid > sa </ Uid >
None.gif  
< Pwd > system </ Pwd >
None.gif
</ server >

登录窗口的数据库连接信息的界面如下:


当在运行程序时打开了登录的窗体,在窗体的Load事件里直接读取xml数据库连接信息,代码如下:
None.gif private   void  LoginFrm_Load( object  sender, System.EventArgs e)
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif {
InBlock.gif            XmlDocument doc 
= new XmlDocument();
InBlock.gif            doc.Load(
"../../ServerInfor.xml");
InBlock.gif            XmlNode server;
InBlock.gif            server 
= doc["server"];
InBlock.gif            
this.tbxIP.Text = server["IP"].InnerText.ToString();
InBlock.gif            
this.tbxUserIP.Text = server["Uid"].InnerText.ToString();
InBlock.gif            
this.tbxIPpass.Text = server["Pwd"].InnerText.ToString();
ExpandedBlockEnd.gif        }

但在输入了正确的登录信息后,可点击"登录"按钮,在单击事件里可以对譔xml文件的编辑,写入譔次登录时的数据库连接信息,代码如下:
ExpandedBlockStart.gif ContractedBlock.gif /**/ /// <summary>
InBlock.gif        
/// 用户进行登录的按钮 
InBlock.gif        
/// </summary>
InBlock.gif        
/// <param name="sender"></param>
ExpandedBlockEnd.gif        
/// <param name="e"></param>

None.gif          private   void  btnLogin_Click( object  sender, System.EventArgs e)
ExpandedBlockStart.gifContractedBlock.gif        
dot.gif {
InBlock.gif            ThreadStart threadStart;
InBlock.gif            Thread thread;
InBlock.gif            
try
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                threadStart
=new ThreadStart(Login);
InBlock.gif                thread
=new Thread(threadStart);
InBlock.gif                thread.Start();
InBlock.gif                
//
InBlock.gif
                XmlTextWriter write = new XmlTextWriter("../../ServerInfor.xml",System.Text.Encoding.Default);
InBlock.gif                write.Formatting 
= Formatting.Indented;
InBlock.gif                write.WriteStartDocument();
InBlock.gif                write.WriteStartElement(
"server");
InBlock.gif                write.WriteElementString(
"IP",this.tbxIP.Text.Trim().ToString());
InBlock.gif                write.WriteElementString(
"Uid",this.tbxUserIP.Text.Trim().ToString());
InBlock.gif                write.WriteElementString(
"Pwd",this.tbxIPpass.Text.Trim().ToString());
InBlock.gif                write.WriteEndElement();   
InBlock.gif                write.WriteEndDocument();   
InBlock.gif                write.Flush();   
InBlock.gif                write.Close();  
ExpandedSubBlockEnd.gif            }

InBlock.gif            
catch
ExpandedSubBlockStart.gifContractedSubBlock.gif            
dot.gif{
InBlock.gif                MessageBox.Show(
"启动登录线程失败!");
InBlock.gif                
return;
ExpandedSubBlockEnd.gif            }

ExpandedBlockEnd.gif        }

 微软的XML可视化编辑器:XML Notepad 2007 :
         XML Notepad 2007 是微软提供的一款可视化的XML浏览和编辑小工具,直接可以在树形节点中进行拖放操作,输出默认的XSL等;在性能方面也非常好,据微软介绍,加载3M大小的XML文件,只需要一秒钟的时间。
下载地址:
http://www.microsoft.com/downloads/details.aspx?familyid=72D6AA49-787D-4118-BA5F-4F30FE913628&displaylang=en

转载于:https://www.cnblogs.com/conquer/archive/2006/11/30/577499.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值