C# 读取xml - .NET技术 / C#
XML code:
<?xml version="1.0"?>
<AutoUpdater>
<URLAddres URL="http://192.168.30.1/"/>
<UpdateInfo>
<Version Num = "1.0.0.1"/>
</UpdateInfo>
<UpdateFileList>
<UpdateFile FileName = "OutlookAddIn.dll"/>
<UpdateFile FileName = "OutlookAddIn.dll.manifest"/>
<UpdateFile FileName = "SetSecurity.dll"/>
</UpdateFileList>
<RestartApp>
<ReStart Allow = "Yes"/>
<AppName Name = "TIMS.exe"/>
</RestartApp>
</AutoUpdater>
我想直接读取里面的子节点
URL 、 Num 和 FileName。。。
最好代码简单
不要用dataset
C# code:
public XmlNode GetConfigSection(string nodePath)
{
return XmlDoc.SelectSingleNode(nodePath);
}
public void GetConfig()
{
XmlDocument doc = new XmlDocument();
string path = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile;
doc.Load(path);
XmlNode node = GetConfigSection("configuration/CustomConfig");
XmlAttributeCollection attributeCollection =
相关问答:
写了个测试程序如下
struct hostent *hp;
char AlarmDevIP[20];
int x2;
hp = gethostbyname("www.google.com");
if (hp)
{
......
请问VFP中如何调用C/C++函数?
你要调用什么功能的函数?要看看VFP中有没有对应的函数,如果有就省着再调用了。如果没有,可以将C/C++函数写个DLL或FLL,然后在VFP调用即可。
十豆三 老师,怎么才能修改自己的 ......
DataSet导出xml 批处理(循环)得怎么处理
XML文件
<A>
<B>
<C>
</C>
&nb ......
有一10*10矩阵,除去第一个点(0,0)和最后一点(9,9),还有八个点为1,其他都为0,要求用二维数组表示。八个点是随机生成的,编写相关程序表示矩阵所有可能情况。
真心求教各位高手,哎!本人太菜了!呵呵!
......
功能说明:Java servlet 把XML数据压缩后发送到PB用户端,PB收到数据后解压出来.
传输要经过Base64编码.
问题是:能收到数据但是解压不出来.想请教大家或者有什么好的办法?
PB可以用"zlibwapi.DLL" 解压
......