0

在我的应用程序中,我需要使用提供的 xml 文件在我的本地计算机上创建一个文件夹结构,如 "* C:\Laptop1\folder\" 、 "C:\Laptop2\folder* "。现在 XML 文件具有我所追求的文件名。

我的xml代码:

<?xml version="1.0" encoding="utf-8" ?>
<Proj>
<MachineIP>
<Machine>
<Name>Laptop 1</Name>
<Path>C:\ZipFiles\Laptop1\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 2</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 3</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 4</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 5</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
<Machine>
<Name>Laptop 6</Name>
<Path>C:\ZipFiles\Laptop2\folder\</Path>
</Machine>
</MachineIP>
</Proj>

我感兴趣的只是知道如何获取机器/名称/到目前为止我不知道如何选择特定标签。任何人都知道如何选择机器标签中的每个名称。我有一个 300mb 的文件要过滤掉。

我的方法是获取 Machine 标签中的每个 Name 并将其存储在一个字符串中,然后使用该字符串创建结构。但是我卡住了请帮助...

到目前为止我的源代码:

//doc created
XmlDocument doc = new XmlDocument();


//loading file:
filePath = System.IO.Directory.GetCurrentDirectory();
filePath = System.IO.Path.Combine(filePath + "\\", "MyConfig.xml");
try
{
     doc.Load(filePath);
}
catch (Exception ex)
{
    MessageBox.Show("Config File Missing: " + ex.Message, "Config File Error",
    MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    Application.Exit();
}

//fetch data:
String[] MachineName = XMLData("PROJ/MachineIP/Machine", "Name");
String[] MachinePath = XMLData("PROJ/MachineIP/Machine", "Path");

//function XMLData():

string[] temp;
XmlNodeList nodeList = doc.SelectNodes(MainNode);
int i = 0;
temp = new string[nodeList.Count];
foreach (XmlNode node in nodeList)
{
     temp.SetValue(node.SelectSingleNode(SubNode).InnerText, i);
     i++;
}
return temp; 

谢谢, HRG

4

2 回答 2

1

如果你有足够的内存一次性加载整个文件,我会使用 LINQ to XML:

var document = XDocument.Load("file.xml");
var names = document.Root
                    .Element("MachineIP")
                    .Elements("Machine")
                    .Elements("Name")
                    .Select(x => (string) x)
                    .ToList();

如果您没有足够的内存,则需要使用XmlReader流式传输输入 - 尽管您可以XElement从每个Machine元素创建一个来处理它。(网上有很多关于如何做到这一点的页面,包括这个。代码不是我要写的,但总体思路就在那里。)

于 2012-06-21T13:27:59.357 回答
0

我能够将它们读入 2 个数组......这是我下面的代码......

//doc created
XmlDocument doc = new XmlDocument();
//loading file:
filePath = System.IO.Directory.GetCurrentDirectory();
filePath = System.IO.Path.Combine(filePath + "\\", "MyConfig.xml");
try
{
     doc.Load(filePath);
}
catch (Exception ex)
{
    MessageBox.Show("Config File Missing: " + ex.Message, "Config File Error",
    MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    Application.Exit();
}

//fetch data:
String[] MachineName = XMLData("PROJ/MachineIP/Machine", "Name");
String[] MachinePath = XMLData("PROJ/MachineIP/Machine", "Path");
于 2012-06-22T09:09:37.030 回答