首页 > 代码库 > 处理xml
处理xml
using System.Xml;
using System;
using System.Text;
using System.Net;
using System.Collections;
using System.Collections.Generic;
public class xml
{
public static string read( string path,string val1,string val2)// str1 文件位置 str2 父节点 str3 子节点
{
XmlDocument xml =new XmlDocument();
xml.Load(path);
XmlNode root=xml.SelectSingleNode(val1);
string val=(root.SelectSingleNode(val2)).InnerText;
return val;
//返回子节点属性
}
}
demo:
var path=Server.MapPath("~/App_Data");
path=path+"/ts.xml";
string user=xml.read(path,"/xml","CreateTime");
@user
处理xml
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。