码迷,mamicode.com
首页 > 其他好文 > 详细

获取xml文件

时间:2014-08-25 11:45:54      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   文件   ar   sp   ad   on   ef   

<?xml version="1.0" encoding="utf-8" ?>
<ArrayOfSystemRool xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <SystemRool>
    <Type>A</Type>
    <MasterPlate>win7-1.24</MasterPlate>
    <MasterPlateID>0e384ece-4c25-4016-8ca9-7db99f2c421b</MasterPlateID>
    <OperatingID>c440a422-7447-49b5-a4ce-bccb7ef17a47</OperatingID>
    <SystemName>64-bit edition of Windows 7</SystemName>
    <CpuCount>2</CpuCount>
  </SystemRool>
  <SystemRool>
    <Type>B</Type>
    <MasterPlate>win7-1.24</MasterPlate>
    <MasterPlateID>0e384ece-4c25-4016-8ca9-7db99f2c421b</MasterPlateID>
    <OperatingID>c440a422-7447-49b5-a4ce-bccb7ef17a47</OperatingID>
    <SystemName>64-bit edition of Windows 7</SystemName>
    <CpuCount>2</CpuCount>
  </SystemRool>
  <SystemRool>
    <Type>C</Type>
    <MasterPlate>win7-1.24</MasterPlate>
    <MasterPlateID>0e384ece-4c25-4016-8ca9-7db99f2c421b</MasterPlateID>
    <OperatingID>c440a422-7447-49b5-a4ce-bccb7ef17a47</OperatingID>
    <SystemName>64-bit edition of Windows 7</SystemName>
    <CpuCount>2</CpuCount>
  </SystemRool>
</ArrayOfSystemRool>

 /// <summary>        

/// 获取类型和模板        

/// </summary>       

 /// <returns></returns>        

public static List<SystemRool> GetRool()        

{            

var _str = File.ReadAllText(HttpContext.Current.Server.MapPath("/masterplate.xml"));            

var _rools = NvWa.Common.DataTypeExtend.SerializeHelper.XMLDeserialize<List<SystemRool>>(_str);            

return _rools;        

}

public class SystemRool        

{            

public string Type { get; set; }//类型对应模版

public string MasterPlate { get; set; }//模版名称

 public string MasterPlateID { get; set; }//模版ID

public string OperatingID { get; set; }//操作系统名称

 public string SystemName { get; set; }//操作系统名称

 public int CpuCount { get; set; }//CPU个数        

}

获取xml文件

标签:des   http   io   文件   ar   sp   ad   on   ef   

原文地址:http://www.cnblogs.com/jysun/p/3934502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!