C# xmlSerializer用法 C# xmlSerializer简单用法示例

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

C# xmlSerializer用法 C# xmlSerializer简单用法示例

peerlessbloom   2021-03-26 我要评论
想了解C# xmlSerializer简单用法示例的相关内容吗,peerlessbloom在本文为您仔细讲解C# xmlSerializer用法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#,xmlSerializer,下面大家一起来学习吧。

本文实例讲述了C# xmlSerializer简单用法。分享给大家供大家参考,具体如下:

先上实体类

public class Entity
{
    public Entity()
    {
    }
    public Entity(string c, string f)
    {
      name = c;
      school = f;
    }
    public string name;
    public string school;
}

使用时声明

List<Entity> entityList=null;
XmlSerializer xs = new XmlSerializer(typeof(List<Entity>));

读入

using (StreamReader sr = new StreamReader(configPath))
{
   entityList = xs.Deserialize(sr) as List<Entity>;
}

输出

using (StreamWriter sw = File.CreateText(configPath))
{
  xs.Serialize(sw, entityList);
}

对应的xml

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfEntity xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <Entity>
  <Name>Alice</Name>
  <School>SJTU</School>
 </Entity>
 <Entity>
  <Name>Cici</Name>
  <School>CSU</School>
 </Entity>
 <Entity>
  <Name>Zero</Name>
  <School>HIT</School>
 </Entity>
</ArrayOfEntity>

PS:这里再为大家提供几款比较实用的xml相关在线工具供大家使用:

在线XML格式化/压缩工具:
http://tools.softyun.net/code/xmlformat

在线XML/JSON互相转换工具:
http://tools.softyun.net/code/xmljson

XML在线压缩/格式化工具:
http://tools.softyun.net/code/xml_format_compress

XML代码在线格式化美化工具:
http://tools.softyun.net/code/xmlcodeformat

希望本文所述对大家C#程序设计有所帮助。

猜您喜欢

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们