自动格式化一个长的 outerXml 字符串

Automatically format a long outerXml string

我有多个大型 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>

使用 StreamWriter,下面的代码将输出您需要的格式并附加到现有的 xml 文件。

Private Sub Button1_Click(sender As System.Object, _
                          e As System.EventArgs) Handles Button1.Click

    Dim sw As System.IO.StreamWriter

    Dim St As String = "1"
    Dim Sb As String = "123"
    Dim Sm As String = "1"

    sw = File.AppendText("C:\XML_Files\sampler_02.xml")
    sw.WriteLine("<SampleMAIN>")
    sw.WriteLine("    <Sample type=" & """" & St & """" & ">")
    sw.WriteLine("        <Sample_Batch>" & Sb)
    sw.WriteLine("    </Sample_Batch>")
    sw.WriteLine("        <SampleMethod>" & Sm)
    sw.WriteLine("    </SampleMethod>")
    sw.WriteLine("</SampleMAIN>")
    sw.Close()

End Sub

所以对于任何可能遇到这个问题并对我如何解决它感兴趣的人来说,这是我使用的...

    Dim dir As New DirectoryInfo("D:\data")
    Dim sw As New StreamWriter("C:\Documents\largeFile.xml")
    Dim xd As New XmlDocument
    Dim iCount As Integer

    sw.WriteLine("<?xml version=""1.0"" encoding=""ISO-8859-1""?>" & vbCrLf & "<Root>")

    For Each fi As FileInfo In dir.GetFiles()
        xd.Load(fi.FullName)
        iCount = 0

        For Each xn As XmlNode In xd.SelectNodes("//Root")          
            For Each xe As XmlElement In xn.ChildNodes
                iCount += 1
                sw.WriteLine(xe.OuterXml.ToString)
                If iCount = 5 Then Exit For
            Next
            Exit For
        Next

    Next

    sw.WriteLine("</Root>")

    sw.Flush() : sw.Close() : sw.Dispose()