我有多个大型 XML 文件,并试图提取特定元素及其子元素的 5 个实例。我已经设置了所有代码,但是,我必须使用 StreamWriter 来写出 xml。我该怎么做才能正确缩进等等。
该字符串看起来类似于:
<SampleMAIN><Sample type="1"><Sample_Batch>123
</Sample_Batch><SampleMethod>
</SampleMethod>
</Sample></SampleMAIN>
我希望它看起来像这样:
<SampleMAIN>
<Sample type="1">
<Sample_Batch>123
</Sample_Batch>
<SampleMethod>1
</SampleMethod>
</SampleMAIN>