关于C#读写XML的公用类

2024-06-24 01:36
文章标签 c# xml 读写 .net netcore 公用

本文主要是介绍关于C#读写XML的公用类,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

XmlHelper有很多种写法,以泛型的方式保存和读取xml,可以做到像下面这么简化又实用:

调用处 var sysParam = XmlHelper.LoadFromXML<TSysParam>(ApplicationDir.SystemParamFile);

 //无参数文件时,初始化系统参数到XML文件
 XmlHelper.SaveAsXML(ApplicationDir.SystemParamFile, param);

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Xml.Serialization;namespace Infrastructure
{public static class XmlHelper{/// <summary>/// 读取以xml格式保存的对象,如果文件不存在则自动创建,触发相关代码/// </summary>/// <typeparam name="T">类型参数</typeparam>/// <param name="filename">文件路径</param>/// <returns></returns>public static T LoadFromXML<T>(string fileName, Action IfFileNotExist = null){T o = default(T);try{if (!File.Exists(fileName)){if (IfFileNotExist != null)IfFileNotExist.DynamicInvoke(fileName);SaveAsXML(fileName, Activator.CreateInstance<T>());}using (FileStream fs = File.OpenRead(fileName)){o = LoadFromXML<T>(fs);fs.Close();fs.Dispose();}}catch (Exception e){if (File.Exists(fileName)){//const string path = "配置备份";//if (!Directory.Exists(path))//    Directory.CreateDirectory(path);File.Copy(fileName,Path.Combine(Comm.AppDir, DateTime.Now.ToString("yyyy_MM_dd hh_mm_ss") + ".xml"), true);Comm.InfoMessage($"加载XML异常备份操作, 请查看文件{fileName}");}throw new Exception($"加载XML异常: {e.Message}: {e.StackTrace}");}return o;}/// <summary>/// 将对象以xml格式保存/// </summary>/// <param name="filename">文件路径</param>/// <param name="o">对象</param>public static bool SaveAsXML(string fileName, object o){try{using (FileStream fs = File.Create(fileName)){XmlSerializer sr = new XmlSerializer(o.GetType());XmlSerializerNamespaces ns = new XmlSerializerNamespaces();ns.Add(string.Empty, string.Empty); //去除根节点的名空间sr.Serialize(fs, o, ns);fs.Close();}return true;}catch (Exception e){throw new Exception($"保存XML异常: {e.Message} 堆栈信息: {e.StackTrace}");}}private static T LoadFromXML<T>(Stream stream){T o = default(T);XmlSerializer sr = new XmlSerializer(typeof(T));o = (T)sr.Deserialize(stream);return o;}              }
}

这篇关于关于C#读写XML的公用类的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1088831

相关文章

10. 文件的读写

10.1 文本文件 操作文件三大类: ofstream:写操作ifstream:读操作fstream:读写操作 打开方式解释ios::in为了读文件而打开文件ios::out为了写文件而打开文件,如果当前文件存在则清空当前文件在写入ios::app追加方式写文件ios::trunc如果文件存在先删除,在创建ios::ate打开文件之后令读写位置移至文件尾端ios::binary二进制方式

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

用命令行的方式启动.netcore webapi

用命令行的方式启动.netcore web项目 进入指定的项目文件夹,比如我发布后的代码放在下面文件夹中 在此地址栏中输入“cmd”,打开命令提示符,进入到发布代码目录 命令行启动.netcore项目的命令为:  dotnet 项目启动文件.dll --urls="http://*:对外端口" --ip="本机ip" --port=项目内部端口 例: dotnet Imagine.M

【STM32】SPI通信-软件与硬件读写SPI

SPI通信-软件与硬件读写SPI 软件SPI一、SPI通信协议1、SPI通信2、硬件电路3、移位示意图4、SPI时序基本单元(1)开始通信和结束通信(2)模式0---用的最多(3)模式1(4)模式2(5)模式3 5、SPI时序(1)写使能(2)指定地址写(3)指定地址读 二、W25Q64模块介绍1、W25Q64简介2、硬件电路3、W25Q64框图4、Flash操作注意事项软件SPI读写W2

intellij idea generatorConfig.xml

generatorConfig.xml <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfigurationPUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN""http://mybatis.org/dtd/mybatis-ge

C# dateTimePicker 显示年月日,时分秒

dateTimePicker默认只显示日期,如果需要显示年月日,时分秒,只需要以下两步: 1.dateTimePicker1.Format = DateTimePickerFormat.Time 2.dateTimePicker1.CustomFormat = yyyy-MM-dd HH:mm:ss Tips:  a. dateTimePicker1.ShowUpDown = t

C#关闭指定时间段的Excel进程的方法

private DateTime beforeTime;            //Excel启动之前时间          private DateTime afterTime;               //Excel启动之后时间          //举例          beforeTime = DateTime.Now;          Excel.Applicat

C# 防止按钮botton重复“点击”的方法

在使用C#的按钮控件的时候,经常我们想如果出现了多次点击的时候只让其在执行的时候只响应一次。这个时候很多人可能会想到使用Enable=false, 但是实际情况是还是会被多次触发,因为C#采用的是消息队列机制,这个时候我们只需要在Enable = true 之前加一句 Application.DoEvents();就能达到防止重复点击的问题。 private void btnGenerateSh

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };