C# XML 文档错误 (2,2) 反序列化 xml 并存储到数组

C# XML Document Error (2,2) deserialize xml and storing to array

目标: - 反序列化 xml 文档中的数据并将其存储为数组。 - 避免手动将数据分配给不同的字符串。 - xml 文档将手动生成

public void DeserializeObject(string filename)
       {
           try
           {
               XmlSerializer deserializer = new XmlSerializer(typeof(string[]));
               FileStream fs = new FileStream(filename, FileMode.Open);
               string[] XmlData = (string[])deserializer.Deserialize(fs);

               foreach (string p in XmlData)
               {
                   Console.WriteLine(p);
               }
           }
           catch (Exception e)
           {
               Console.WriteLine(e.Message);
           }   
       }

XML文档如下

<?xml version="1.0" encoding="utf-8"?>
<Mapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Products>
    <Product>
      <software>Seiko</software>
    </Product>
    <Product>
      <hardware>Martina</hardware>
    </Product>
  </Products>
</Mapping>

您需要从样本 XML 生成 class。 您可以使用 xsd.exe 生成一个 .xsd 并从中创建一个 .cs 文件。

您需要将此类型添加到您的 XmlSerializer

看到这个答案:Generate C# class from XML

XmlSerializer deserializer = new XmlSerializer(typeof(Mapping)); <- Created class type here.

如果您只想从 XML 文档中获取数据作为字符串数组,您可以使用 XmlDocument 加载数据

XmlDocument doc = new XmlDocument();
doc.Load("file.xml");

然后您可以使用 xPath 表达式找到您需要的节点:

XmlNodeList nodelist = doc.SelectNodes(...);

试试这个

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleApplication38
{
    class Program
    {
        static void Main(string[] args)
        {
            string input =
            "<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
            "<Mapping xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">" +
              "<Products>" +
                "<Product>" +
                  "<software>Seiko</software>" +
                "</Product>" +
                "<Product>" +
                  "<hardware>Martina</hardware>" +
                "</Product>" +
              "</Products>" +
            "</Mapping>";

            XDocument doc = XDocument.Parse(input);

            var results = doc.Descendants("Product").Select(x =>
                x.Elements().Select(y => new { type = y.Name, value = (string)y }).ToList()
            ).SelectMany(z => z).ToList();

            var groups = results.GroupBy(x => x.type).ToList();
        }
    }
}

谢谢,找到这个解决方案

<?xml version="1.0" encoding="utf-8" ?>
<Locations>
  <Location Name="Location1" IP="127.0.0.1"></Location>
  <Location Name="Location2" IP="127.0.0.1"></Location>
  <Location Name="Location3" IP="127.0.0.1"></Location>
  <Location Name="Location4" IP="127.0.0.1"></Location>
  <Location Name="Location5" IP="127.0.0.1"></Location>
</Locations>


using System.Xml.Linq;

class Program
   {
       static void Main(string[] args)
       {
           string[] strarr = GetStringArray("Locations.xml");

           foreach (string str in strarr)
           {
               Console.WriteLine(str);
           }
       }

       public static string[] GetStringArray(string url)
       {
            XDocument doc = XDocument.Load(url);

           var locations = from l in doc.Descendants("Location")
                           select (string)l.Attribute("Name");

           return locations.ToArray();
       }
   }