VB.net中新行中的XML元素

时间:2009-09-30 20:56:17

标签: xml

我在我的VB.net文件中使用XMLTextWriter来构建XML文件。 如何确保编写器将元素写入新行。当我基于数据库中的值构建XML文件时,它有时会为100个或更多记录构建xml,并且一些元素分解并出现在两行中。

如何确保它始终在新行中写入xml元素。

Dim memory_stream As New MemoryStream()
    Dim settings As XmlWriterSettings = New XmlWriterSettings()
    settings.Indent = True
    settings.NewLineOnAttributes = True
    settings.Encoding = UTF8Encoding.Default



    Dim xml_text_writer As XmlWriter

    xml_text_writer = XmlWriter.Create(memory_stream, settings)

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

您不需要将您的元素放在新行