0

我已经解决了阅读 XML 文件的问题。我现在需要的是将日期时间缩减到仅 MM dd yyyy hh:mm:ss 并且当我插入到我的 Informix 数据库时不要把它的其余部分带过来。

这是 XML 信息:

 <RecordFilingRequestMessage xmlns:nc="http://niem.gov/niem/niem-core/2.0">
<nc:DocumentIdentification>
  <nc:IdentificationID>3212842</nc:IdentificationID>
</nc:DocumentIdentification>
<nc:DocumentPostDate>
  <nc:DateTime>2013-06-25T11:32:08.5343733-04:00</nc:DateTime>
</nc:DocumentPostDate>
<nc:DocumentSubmitter>
  <ecf:EntityPerson s:id="REVIEWER">
    <nc:PersonName />
    <nc:PersonOtherIdentification>
      <nc:IdentificationID>41130</nc:IdentificationID>
      <nc:IdentificationCategoryText>FLEPORTAL</nc:IdentificationCategoryText>
    </nc:PersonOtherIdentification>
    <nc:PersonOtherIdentification>
      <nc:IdentificationID>kacolburn</nc:IdentificationID>
      <nc:IdentificationCategoryText>FLEPORTAL_LOGONNAME</nc:IdentificationCategoryText>
    </nc:PersonOtherIdentification>

...这是我的 C# 代码:

string DocID = null;
        int elementCount = 0;
        string reqID = null;
        string reqDateTime = null;
        string empName = null;
        string[] fileEntries = Directory.GetFiles(@"C:\XML\3212842.xml");
        foreach (string fileName in fileEntries)
        {
            XmlReader xr = XmlReader.Create(fileName); //reads XML from folder
            while (xr.Read())
            {
                if (xr.NodeType == XmlNodeType.Element && xr.Name == "nc:DateTime")
                {
                    reqDateTime = xr.ReadElementContentAsString();                   
                }
                if (xr.NodeType == XmlNodeType.Element && xr.Name == "nc:IdentificationID")
                {
                    elementCount++;
                    DocID = xr.ReadElementContentAsString();
                    if (elementCount == 1)
                    {
                        reqID = DocID;
                    }
                    if (elementCount == 3)
                    {
                        empName = DocID;
                        listBox1.Items.Add(reqID + " / " + reqDateTime + " / " + empName);
                        elementCount = 0;
                        break;
                    }
4

2 回答 2

0

看起来问题是 XML 使用名称空间,而您的 XPath 没有。您没有发布完整的 XML,但您可能有类似xmlns:nc="http://some.url/的内容。确保在命名空间管理器中包含命名空间,然后将命名空间前缀添加到您的查询中:

var nameTable = new NameTable();
var nsMgr = new XmlNamespaceManager(nameTable);
nsmgr.AddNamespace("nc", "http://some.url/");

var dataNodes = xmlDoc.SelectNodes("nc:RecordFilingRequest/nc:DocumentIdentification", nsMgr);
foreach (var node in dataNodes)
{
    var ID = Convert.ToInt32(node.SelectSingleNode("nc:IdentificationID", nsMgr).InnerText);
    // insert into database, e.g. using SqlCommand or whatever
}
于 2013-06-25T20:28:44.617 回答
0

我的第一个想法是,最后一个“/”不属于“SelectNodes”调用。

或者,此代码将解决您的问题:

foreach(XmlNode node in xmlDoc.GetElementsByTagName("RecordFilingRequest")[0].GetElementsByTagName("nc:DocumentIdentification"))
{
    int ID = Convert.ToInt32(node.FirstChild().InnerText);
}

编辑:这确实假设“RecordFilingRequest”始终存在。添加一个 try .. catch 语句,如果不是这样的话。

于 2013-06-25T20:28:48.060 回答