如何从XML数据中提取特定数据

时间:2015-06-11 17:57:51

标签: c# xml parsing csv

我使用以下代码段来解析某些XML数据并将其转换为CSV。我可以转换整个XML数据并将其转储到文件中,但是我的要求已经改变,现在我很困惑。

public void xmlToCSVfiltered(string p, int e)
        {                 
            string all_lines1 = File.ReadAllText(p);

            all_lines1 = "<Root>" + all_lines1 + "</Root>";
            XmlDocument doc_all = new XmlDocument();
            doc_all.LoadXml(all_lines1);
            StreamWriter write_all = new StreamWriter(FILENAME2);
            XmlNodeList rows_all = doc_all.GetElementsByTagName("XML");

            List<string[]> filtered = new List<string[]>();

            foreach (XmlNode rowtemp in rows_all)
            {
                List<string> children_all = new List<string>();
                foreach (XmlNode childtemp in rowtemp.ChildNodes)
                {
                    children_all.Add(Regex.Replace(childtemp.InnerText, "\\s+", " "));     // <------- Fixed the Bug , Advisories dont span          
                }  
                string.Join(",", children_all.ToArray());

                //write_all.WriteLine(string.Join(",", children_all.ToArray()));

                if (children_all.Contains(e.toString()))
                {
                    filtered.Add(children_all.ToArray());
                    write_all.WriteLine(children_all);
                }
            }
            write_all.Flush();
            write_all.Close();

            foreach (var res in filtered)
            {
                Console.WriteLine(string.Join(",", res));
            }
        }

我的输入类似于以下内容......我的目标是仅转换这些“事件”并编译成具有特定数字的CSV。可以说,例如,我只想将那些在元素<EVENT>下的第二个数据值为4627的事件转换为CSV。它只会转换这些事件,如果输入如下,两者都在下面提到。

<XML><HEADER>1.0,770162,20121009133435,3,</HEADER>20121009133435,721,5,1,0,0,0,00:00,00:00,<EVENT>00032134826064957,4627,</EVENT><DRUG>1,1872161156,7,0,10000</DRUG><DOSE>1,0,5000000,0,10000000,0</DOSE><CAREAREA>1 </CAREAREA><ENCOUNTER></ENCOUNTER><ADVISORY>Keep it simple or spell
        tham ALL out. For some reason 
        that is not the case
        please press the on button 
        when trying to activate
        device codes also available on
    list</ADVISORY><CAREGIVER></CAREGIVER><PATIENT></PATIENT><LOCATION>20121009133435,00-1d-71-0a-71-80,-66</LOCATION><ROUTE></ROUTE><SITE></SITE><POWER>0,50</POWER></XML> 
<XML><HEADER>2.0,773162,20121009133435,3,</HEADER>20121004133435,761,5,1,0,0,0,00:00,00:00,<EVENT>00032134826064957,4627,</EVENT><DRUG>1,18735166156,7,0,10000</DRUG><DOSE>1,0,5000000,0,10000000,0</DOSE><CAREAREA>1 </CAREAREA><ENCOUNTER></ENCOUNTER><ADVISORY>Keep it simple or spell
        tham ALL out. For some reason 
        that is not the case
        please press the on button 
        when trying to activate
        device codes also available on
    list</ADVISORY><CAREGIVER></CAREGIVER><PATIENT></PATIENT><LOCATION>20121009133435,00-1d-71-0a-71-80,-66</LOCATION><ROUTE></ROUTE><SITE></SITE><POWER>0,50</POWER></XML> 

.. goes on

到目前为止,我的方法是将所有内容转换为CSV并将其存储在某种数据结构中,然后逐行查询该数据结构,并查看该数字是否存在,如果是,则将其写入文件行按行。我的函数将XML文件的路径和我们在XML数据中寻找的数字作为参数。我是C#的新手,我无法理解如何改变上面的功能。任何帮助将不胜感激!

编辑:

示例输入:

<XML><HEADER>1.0,770162,20121009133435,3,</HEADER>20121009133435,721,5,1,0,0,0,00:00,00:00,<EVENT>00032134826064957,4627,</EVENT><DRUG>1,1872161156,7,0,10000</DRUG><DOSE>1,0,5000000,0,10000000,0</DOSE><CAREAREA>1 </CAREAREA><ENCOUNTER></ENCOUNTER><ADVISORY>Keep it simple or spell
    tham ALL out. For some reason 
    that is not the case
    please press the on button 
    when trying to activate
    device codes also available on
list</ADVISORY><CAREGIVER></CAREGIVER><PATIENT></PATIENT><LOCATION>20121009133435,00-1d-71-0a- 

    <XML><HEADER>1.0,770162,20121009133435,3,</HEADER>20121009133435,721,5,1,0,0,0,00:00,00:00,<EVENT>00032134826064957,4623,</EVENT><DRUG>1,1872161156,7,0,10000</DRUG><DOSE>1,0,5000000,0,10000000,0</DOSE><CAREAREA>1 </CAREAREA><ENCOUNTER></ENCOUNTER><ADVISORY>Keep it simple or spell
        tham ALL out. For some reason 
        that is not the case
        please press the on button 
        when trying to activate
        device codes also available on
    list</ADVISORY><CAREGIVER></CAREGIVER><PATIENT></PATIENT><LOCATION>20121009133435,00-1d-71-0a- 

必需输出:

1.0,770162,20121009133435,3,,20121009133435,721,5,1,0,0,0,00:00,00:00,,00032134 26064957,4627,1,,1872161156,7,0,10000,1,0,5000000,0,10000000,0,1 ,,Keep it simple or spell
    tham ALL out. For some reason 
    that is not the case
    please press the on button 
    when trying to activate
    device codes also available on
list,,,20121009133435,00-1d-71-0a-71-80,-66,,,0,50 

如果我致电xmlToCSVfiltered(file, 4627);,就会出现上述情况 另请注意,输出将是CSV文件中的单个水平线,但我无法在此处对其进行格式化,因为它看起来像那样。

2 个答案:

答案 0 :(得分:1)

我做了一些假设,因为我不清楚这个问题
假设

1。我假设你知道你需要检查节点事件,你需要从那里第二个位置元素。
2。您知道节点中值之间的分隔符。例如。 ','在活动中

    public void xmlToCSVfiltered(string p, int e, string nodeName, char delimiter)
    {
        //get the xml node
        XDocument xml = XDocument.Load(p);

        //get the required node. I am assuming you would know. For eg. Event Node
        var requiredNode = xml.Descendants(nodeName);

        foreach (var node in requiredNode)
        {
            if (node == null)
                continue;

            //Also here, I am assuming you have the delimiter knowledge.
            var valueSplit = node.Value.Split(delimiter);

            foreach (var value in valueSplit)
            {
                if (value == e.ToString())
                {
                    AddToCSV();
                }
            }
        }
    }

答案 1 :(得分:1)

我将XmlDocumnet更改为XDocument,因此我可以使用Xml Linq。我也用于测试使用StringReader来读取字符串而不是从文件中读取。您可以将代码转换回原始的File.ReadAlltext。

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

namespace ConsoleApplication1
{
    class Program
    {
        const string FILENAME2 = @"c:\temp\test.txt";
        static void Main(string[] args)
        {
            string input = 
            "<XML><HEADER>1.0,770162,20121009133435,3,</HEADER>20121009133435,721,5,1,0,0,0,00:00,00:00,<EVENT>00032134826064957,4627,</EVENT><DRUG>1,1872161156,7,0,10000</DRUG><DOSE>1,0,5000000,0,10000000,0</DOSE><CAREAREA>1 </CAREAREA><ENCOUNTER></ENCOUNTER><ADVISORY>Keep it simple or spell\n" +
                    "tham ALL out. For some reason \n" +
                    "that is not the case\n" +
                    "please press the on button\n" + 
                    "when trying to activate\n" +
                    "device codes also available on\n" +
                "list</ADVISORY><CAREGIVER></CAREGIVER><PATIENT></PATIENT><LOCATION>20121009133435,00-1d-71-0a-71-80,-66</LOCATION><ROUTE></ROUTE><SITE></SITE><POWER>0,50</POWER></XML>\n" + 
            "<XML><HEADER>2.0,773162,20121009133435,3,</HEADER>20121004133435,761,5,1,0,0,0,00:00,00:00,<EVENT>00032134826064957,4627,</EVENT><DRUG>1,18735166156,7,0,10000</DRUG><DOSE>1,0,5000000,0,10000000,0</DOSE><CAREAREA>1 </CAREAREA><ENCOUNTER></ENCOUNTER><ADVISORY>Keep it simple or spell\n" +
                    "tham ALL out. For some reason\n" + 
                    "that is not the case\n" +
                    "please press the on button\n" + 
                    "when trying to activate\n" +
                   "device codes also available on\n" +
                "list</ADVISORY><CAREGIVER></CAREGIVER><PATIENT></PATIENT><LOCATION>20121009133435,00-1d-71-0a-71-80,-66</LOCATION><ROUTE></ROUTE><SITE></SITE><POWER>0,50</POWER></XML>\n";

            xmlToCSVfiltered(input, 4627); 

        }
        static public void xmlToCSVfiltered(string p, int e)
        {
            //string all_lines1 = File.ReadAllText(p);
            StringReader reader = new StringReader(p);
            string all_lines1 = reader.ReadToEnd();

            all_lines1 = "<Root>" + all_lines1 + "</Root>";
            XDocument doc_all = XDocument.Parse(all_lines1);
            StreamWriter write_all = new StreamWriter(FILENAME2);
            List<XElement> rows_all = doc_all.Descendants("XML").Where(x => x.Element("EVENT").Value.Split(new char[] {','}).Skip(1).Take(1).FirstOrDefault() == e.ToString()).ToList();

            List<string[]> filtered = new List<string[]>();

            foreach (XElement rowtemp in rows_all)
            {
                List<string> children_all = new List<string>();
                foreach (XElement childtemp in rowtemp.Elements())
                {
                    children_all.Add(Regex.Replace(childtemp.Value, "\\s+", " "));     // <------- Fixed the Bug , Advisories dont span          
                }
                string.Join(",", children_all.ToArray());

                //write_all.WriteLine(string.Join(",", children_all.ToArray()));

                if (children_all.Contains(e.ToString()))
                {
                    filtered.Add(children_all.ToArray());
                    write_all.WriteLine(children_all);
                }
            }
            write_all.Flush();
            write_all.Close();

            foreach (var res in filtered)
            {
                Console.WriteLine(string.Join(",", res));
            }
        }
    }
}
​