4

我的数据集中有一个字段包含未格式化的 XML 字符串,例如:

<root><element><subelement>value</subelement></element></root>

如何“美化”它并在 Tablix 控件中显示它?像这样:

<root>
    <element>
        <subelement>value</subelement>
    </element>
</root>
4

1 回答 1

5

这可以通过在报告中使用嵌入代码并使用System.Xml.XmlTextWriterwithXmlTextWriterSettings.Indent = true

打开报告属性对话框并将以下函数粘贴到代码选项卡中:

Public Function FormatXml(input As String) As String
  Dim doc As New System.Xml.XmlDocument()
  doc.LoadXml(input)
  Dim sb As New System.Text.StringBuilder()
  Dim settings As New System.Xml.XmlWriterSettings()
  settings.Indent = True
  settings.IndentChars = "    "      ' This includes 4 non-breaking spaces: ALT+0160
  settings.NewLineChars = System.Environment.NewLine
  settings.NewLineHandling = System.Xml.NewLineHandling.Replace
  settings.OmitXmlDeclaration = True
  Using writer As System.Xml.XmlWriter = System.Xml.XmlWriter.Create(sb, settings)
    doc.Save(writer)
  End Using
  Return sb.ToString()
End Function

您还需要添加对 的引用System.Xml,因为默认情况下不包含它。在 Report Properties 中选择“References”选项卡,然后System.Xml从 .NET 程序集列表中添加:

System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089

然后,在您的文本框/表格的表达式中,您可以使用以下表达式:

=Code.FormatXml(Fields!YourXmlField.Value)

当您尝试部署报告时,您可能会收到如下错误:

The definition of the report '/your.report' is invalid. Line 0:, Column: 0

此错误消息不是很有用,但它可能意味着您的嵌入式代码在某些方面不正确。最常见的原因是您引用了一个找不到的类。例如,XmlWriterSettings代替System.Xml.XmlWriterSettings.

于 2013-10-30T04:49:43.140 回答