以下のコード XmlDiff を使用して、2 つの xml ファイルを比較しています。
XmlReader reader1 = XmlReader.Create(new StringReader(file1));
XmlReader reader2 = XmlReader.Create(new StringReader(file2));
string diffFile = "D:\\XMLDiffCompare\\XmlDiffFilename.xml";
StringBuilder differenceStringBuilder = new StringBuilder();
FileStream fs = new FileStream(diffFile, FileMode.Create);
XmlWriter diffGramWriter = XmlWriter.Create(fs);
// XmlTextWriter diffgram = new XmlTextWriter(Console.Out);
// diffgram.Formatting = Formatting.Indented;
XmlDiff xmldiff = new XmlDiff(XmlDiffOptions.IgnoreChildOrder );
bool bIdentical = xmldiff.Compare(file1, file2, false, diffGramWriter);
比較後に生成される xml ファイルは次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<xd:xmldiff xmlns:xd="http://schemas.microsoft.com/xmltools/2002/xmldiff" version="1.0" srcDocHash="12061993843110569490" options="IgnoreNamespaces " fragments="no">
<xd:node match="2">
<xd:node match="1">
<xd:node match="2">
<xd:node match="2">
<xd:node match="1">
<xd:change match="1">USA</xd:change>
</xd:node>
</xd:node>
</xd:node>
</xd:node>
<xd:node match="2">
<xd:node match="1">
<xd:change match="1">7909</xd:change>
</xd:node>
</xd:node>
</xd:node>
</xd:xmldiff>
のノード名を取得したかったのですが"USA"
、これはであり、タイムスタンプである"countryName"
も無視したかったのです。7909
XML ファイルには多くのノードが含まれているため、"CountryName"
ノードを出力して値を確認したいと考えています。
また、値が「7909」のノードはtig
as inという名前空間に属しており、ドキュメント内の名前空間xmlns:tig="..."
をすべて無視してもかまいません。tig
ただし、比較中にそれを抑制する方法がわかりません。
<ContactInfo>
<PersonName>
<FormattedName>My Name</FormattedName>
<GivenName>Test first Name</GivenName>
<FamilyName>Test Last Name</FamilyName>
</PersonName>
<ContactMethod>
<WhenAvailable>anytime</WhenAvailable>
<PostalAddress type="undefined">
<CountryCode>USA</CountryCode>
<Region>region</Region>
<DeliveryAddress>
<AddressLine>Address to get </AddressLine>
</DeliveryAddress>
</PostalAddress>
</ContactMethod>
</ContactInfo>