快速处理xml数据

更新时间:2023-05-11 12:40:10 阅读: 评论:0

test01.aspx.cs代码如下
--------------------------------------------------------------------
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Xml;
l
{
public partial class test01 : System.Web.UI.Page
{
protected void Page_Load(object nder, EventArgs e)
{
if (!IsPostBack)
{
DateTime begin = System.DateTime.Now;
TimeSpan span = begin - begin;
this.MakeData();
DateTime end = DateTime.Now;
span = end - begin;
this.Page.Respon.Write(string.Format("{0}", span.ToString()));
}
}
private void MakeData()
{
string fpah = Server.MapPath("~/l");
// xdoc.LoadXml(strXml);
System.Xml.XmlDocument xdoc = null;
Positions obj = null;
try
{
xdoc = new System.Xml.XmlDocument();
xdoc.Load(fpah);
if(xdoc.ChildNodes.Count > 0)
{
obj = new Positions();
foreach(XmlNode node in xdoc.ChildNodes[0].ChildNodes)
{
this.MakePoints(node, obj);
}
}
}
catch (Exception ex)
{
//
}
finally
{
xdoc = null;
//obj.Dispo();
obj = null;
}
}
private void MakePoints(XmlNode node, Positions obj)
{
string name = node.Name.Trim();
switch (name)
{
ca "Company":
{
this.Fun_Company(node, obj);
break;
}
ca "Position":
{
this.Fun_Position(node, obj);
break;
}
}
}
protected void Fun_Company(XmlNode node, Positions obj)
{
obj.MyCompany = new Company
{
CorpName = node.SelectSingleNode("descendant::CorpName").InnerText,
OfficeAddr1 = this.Fun_Single(node, "OfficeAddr1", obj),
OffPostCode1 = this.Fun_Single(node, "OffPostCode1", obj),
CompanySize = this.Fun_Single(node, "CompanySize", obj),
AboutUs = this.Fun_Single(node, "AboutUs", obj),
};
this.Fun_Multi(node.SelectSingleNode("descendant::TradeCodes"), obj);
this.Fun_Multi(node.SelectSingleNode("descendant::Websites"), obj);
this.Fun_Multi(node.SelectSingleNode("descendant::Informations"), obj);
}
private void Fun_Position(XmlNode node, Positions obj)
{
obj.MyPosition = new Position
{
ReleaDate = this.Fun_Single(node, "ReleaDate", obj),
Description = this.Fun_Single(node, "Description", obj),
PositionName = this.Fun_Single(node, "PositionName", obj),
Number = this.Fun_Single(node, "Number", obj),
Education = this.Fun_Single(node, "Education", obj),
Salary = this.Fun_Single(node, "Salary", obj),
URLFrom = this.Fun_Single(node, "URLFrom", obj),
SnapshoAddr = this.Fun_Single(node, "SnapshoAddr", obj),
};
this.Fun_Multi(node.SelectSingleNode("descendant::Citys"), obj);
this.Fun_Multi(node.SelectSingleNode("descendant::Emails"), obj);
}
private string Fun_Single(XmlNode node, string child, Positions obj)
{
string resutl = "";
resutl = node.SelectSingleNode(string.Format("descendant::{0}", child)).InnerText;
return resutl;
}
private void Fun_Multi(XmlNode node, Positions obj)
{
switch(node.Name)
{
ca "TradeCodes":
{
foreach (XmlNode i in node.ChildNodes)
{
obj.MyCompany.TradeCodes.Add(i.InnerText);
}
break;
}
ca "Informations":
{
foreach (XmlNode i in node.ChildNodes)
{
Dictionary<string, string> item = new Dictionary<string, string>();
obj.MyCompany.Informations.Add(item);
foreach (XmlNode j in i.ChildNodes)
{
item.Add(j.Name, j.InnerText);
}
}
break;
}
ca "Citys":
{
foreach (XmlNode i in node.ChildNodes)
{
obj.MyPosition.Citys.Add(i.InnerText);
}
break;
}
ca "Emails":
{
foreach (XmlNode i in node.ChildNodes)
{
obj.MyPosition.Emails.Add(i.InnerText);
}
break;
}
}
}
}
public class Positions : BaClass
{
public Positions()
{
this.MyCompany = new Company();
this.MyPosition = new Position();
}
public Company MyCompany
{
get;
t;
}
public Position MyPosition
{
get;
t;
}
}
public class Company : BaClass
{
public Company()
{
this.TradeCodes = new List<string>();
this.Websites = new List<string>();
this.Informations = new List<Dictionary<string, string>>();
}
public string CorpName
{
get;
t;
}
public string OfficeAddr1
{
get;
t;
}
public string OffPostCode1
{
get;
t;
}
public string CompanySize
{
get;
t;
}
public List<string> TradeCodes
{
get;
t;
}
public string AboutUs
{
get;
t;
}
public List<string> Websites
{
get;
t;
}
public List<Dictionary<string, string>> Informations
{
get;
t;
}
}
public class Position : BaClass
{
public Position()
{
this.Citys = new List<string>();
this.Emails = new List<string>();
}
public string ReleaDate
{
get;
t;
}
public string Description
{
get;
t;
}
public string PositionName
{
get;
t;
}
public string Number
{
get;
t;
}
public string Education
{
get;
t;
}
public string Salary
{
get;
t;
}
public List<string> Citys
{
get;
t;
}
public List<string> Emails
{
get;
t;
}
public string URLFrom
{
get;
t;
}
public string SnapshoAddr
{
get;
t;
}
}
public class BaClass//:IDisposable
{
public void Dispo()
{
}
}
}
--------------------------------------------------------------------
2、待处理的xml字符串数据
--------------------------------------------------------------------
<Positions from="51Job">
<Company>
<CorpName><![CDATA[北京志
诚泰和数码办公设备股份有限公司]]></CorpName>
<OfficeAddr1><![CDATA[北京市海淀区知春路108号豪景大厦A座10层]]></OfficeAddr1>
<OffPostCode1><![CDATA[100086]]></OffPostCode1>
<CompanySize><![CDATA[500人以上]]></CompanySize>
<TradeCodes>
<TradeCode><![CDATA[办公用品及设备]]></TradeCode>
<TradeCode><![CDATA[计算机硬件]]></TradeCode>
</TradeCodes>
<AboutUs><![CDATA[泰和数码办公企业创建于1992年8月,历经十几年的发展,目前已成为以北京为中心的全国性股份制公司,旗下拥有十多家专业公司,分布于北京、上海、广州、武汉、成都、西安、长沙和南昌等核心城市,注册资金5000万元,在职员工近500名。  秉承“先进的技术、优质的产
品、完善的服务、合理的价格”的经营理念,自公司创立以来,本公司的销售、技术服务、研发等高素质人才为各行各业的客户提供着从需求分析、产品咨询、专业培训、网络建设、软件开发、软件应用培训及维护、硬件销售、保养及维修、各种消耗品供应等一条龙的量身定做的专业化、规范化、人性化服务。  泰和数码办公企业重视培养人才,实行任人唯贤的人力资源政策,积极培养有理想、有道德、有责任感、有协作精神的现代化员工队伍,同时积极引进先进的管理理念,采用规范化、科学化的管理方法不断壮大自身实力。  公司始终坚持人才与企业共同发展的理念,关注员工的技能培训及发展,并不断加强企业文化的营建。公司业务的持续高速发展,也为员工担供了极大的发展空间。多元化的企业文化、以人为本的经营管理理念证明了泰和是一个良好的发展平台。    公司网站 ]]></AboutUs>
<Websites>
<Website><![CDATA[]]></Website>
</Websites>
<Informations>
<Information>
<Contact><![CDATA[人力资源部]]></Contact>
<Addr><![CDATA[北京市海淀区知春路108号豪景大厦A座10层]]></Addr>
<OffPostCode><![CDATA[100086]]></OffPostCode>
</Information>
</Informations>
</Company>
<Position>
<ReleaDate><![CDATA[2011-04-14]]></ReleaDate>
<Description><![CDATA[岗位职责:1,主要负责杭州市内复印机等办公设备的日常保养和故障处理,维系客情关系;2,在为所负责区域的客户做保养或维修的同时进行硒鼓、纸张等办公耗材的销售工作。岗位要求:1,中专以上学历,计算机或电子类相关专业;2,熟悉杭州地形,能吃苦,有上进心;3,喜欢动手,有相关工作经验者优先。薪资福利:底薪+提成+工作餐+五险一金+高温补贴+带薪培训+免费体检+节日费等]]></Description>
<PositionName><![CDATA[复印机维修工程
师]]></PositionName>
<Number><![CDATA[5]]></Number>
<Education><![CDATA[中专]]></Education>
<Salary><![CDATA[2000-2999]]></Salary>
<Citys>
<City><![CDATA[杭州]]></City>
</Citys>
<Emails>
<Email><![CDATA[]]></Email>
</Emails>
<URLFrom>/job/45205821,c.html</URLFrom>
<SnapshoAddr>{117BD768-CA9A-4D75-9C47-BB30E638FCE2}.html</SnapshoAddr>
</Position>
</Positions>
--------------------------------------------------------------------

本文发布于:2023-05-11 12:40:10,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/585388.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:公司   企业   理念
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图