C#.NETのサンプルコードを掲載しています。
      
逆シリアライズしてDataTableを復元する
逆シリアライズしファイルからDataTableを復元するサンプルです。
サンプルコード
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Xml.Serialization;
using System.IO;

namespace dst
{
    public class dst026
    {
        /// <summary>
        /// XMLファイルを逆シリアライズしDataTableオブジェクトで返します。
        /// </summary>
        /// <param name="dt">DataTableオブジェクト</param>
        /// <param name="xmlPath">XMLファイルパス</param>
        static public void LoadXMLToDataTable(ref DataTable dt, string xmlPath)
        {
            using (FileStream fs = new FileStream(xmlPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
            {
                XmlSerializer serializer = new XmlSerializer(dt.GetType());
                dt = (DataTable)serializer.Deserialize(fs);
            }
        }
    }
}

呼び出しもとのソースはこちら。
呼び出し元
1
2
3
4
5

private void button2_Click(object sender, EventArgs e)
{
    DataTable dt = new DataTable();
    dst026.LoadXMLToDataTable(ref dt, "dst025.xml");
}

      








Copyright (C) 2011 - 2017 猫の気ままなC#日記