2つのxmlファイルを結合する必要があります。XMLノードを追加するC#
Test1.xmlが
<ProfileSearchResponse xmlns="xxxRestServices" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Profile>
<Category>
<a>Test1 string</a>
<b>Test3 string</b>
</Category>
<Chapters>
<Chapter>
<Name>bi weekly Update</Name>
</Chapter>
</Chapters>
<Disclaimer>"The purpose of the Profiles is xxxxxx </Disclaimer>
<RelatedProfiles>Blah blah testing this </RelatedProfiles>
</Profile>
</ProfileSearchResponse>
を下回っているTest2.xmlこれは、予想される出力され
<ProfileSearchResponse xmlns="xxxRestServices" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Profile>
<Chapters>
<Chapter>
<Name>Previous bi weekly Updates</Name>
</Chapter>
</Chapters>
<Disclaimer>"The purpose of the Profiles is xxxxxx </Disclaimer>
</Profile>
</ProfileSearchResponse>
を下回っています。
<ProfileSearchResponse xmlns="xxxRestServices" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Profile>
<Category">
<a>Test1 string</a>
<b>Test3 string</b>
</Category>
<Chapters>
<Chapter>
<Name>bi weekly Update</Name>
</Chapter>
<Chapter>
<Name>Previous bi weekly Updates</Name>
</Chapter>
</Chapters>
<Disclaimer>"The purpose of the Profiles is xxxxxx </Disclaimer>
<RelatedProfiles>Blah blah testing this </RelatedProfiles>
</Profile>
</ProfileSearchResponse>
"Chapter"ノードをTest2.xmlから取得し、Test1.xmlに追加しようとしています。 これは私が書いたC#プログラムの一部です。
XmlDocument document1 = new XmlDocument();
XmlDocument document2 = new XmlDocument();
document1.Load(@"C:\test1.xml");
document2.Load(@"C:\test2.xml");
XmlNode myNode = document2.DocumentElement.SelectSingleNode("//Chapter");
document1.DocumentElement.AppendChild(myNode);
myNodeがnullである理由はわかりません。私はどのようにノードを追加するかについてはあまりよく分かりません。どんな助けもありがとうございます。
おかげ MR
を使用するのを忘れてわかりません章を既存のタグの章に置き換えます。 – jdweng