我有xml数据,我将返回到我的视图。我把它放在textarea中,但这显示它没有格式化。如何格式化xml以在我的视图中显示?
我将只在页面的一部分显示xml,所以我不能让IE显示它。我希望它是标准的xml缩进格式。
答案 0 :(得分:6)
如果,通过“格式化”,您的意思是缩进,那么您可以将其加载到XmlDocument并将其写入XmlWriter,并使用设置了XmlWriterSettings的Indent进行初始化到true
。
private string FormatXml(string input)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(input);
using (StringWriter buffer = new StringWriter())
{
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
using (XmlWriter writer = XmlWriter.Create(buffer, settings))
{
doc.WriteTo( writer );
writer.Flush();
}
buffer.Flush();
return buffer.ToString();
}
}
答案 1 :(得分:6)
只需将XML加载到XElement
,然后使用XElement.ToString()
。
答案 2 :(得分:4)
您可以使用XSLT将XML转换为XHTML,然后显示该内容。
答案 3 :(得分:3)
这就是我喜欢做的事情:
<?xml version="1.0" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" standalone="yes" omit-xml-declaration="yes"
encoding="utf-8" media-type="text/html" indent="no" cdata-section-elements=""
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
<xsl:template match="/">
<html><head><title>XML Data</title>
<style type="text/css">th {text-align:right}</style></head>
<body><table><xsl:apply-templates/></table></body></html>
</xsl:template>
<xsl:template match="*[text() and *]">
<xsl:apply-templates select="@*"/>
<tr><th><xsl:value-of select="name()"/></th>
<td>
<xsl:for-each select="*|text()">
<xsl:choose>
<xsl:when test="name()">
<xsl:apply-templates mode="inline" select="."/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="."/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</td>
</tr>
</xsl:template>
<xsl:template match="*" mode="inline">
<xsl:text> [ </xsl:text>
<strong><xsl:value-of select="name()"/></strong>
<xsl:if test="@*">
<xsl:text> ( </xsl:text>
<xsl:for-each select="@*"><xsl:if test="position() > 1" xml:space="preserve"> </xsl:if>
<em><xsl:value-of select="name()"/></em> = <xsl:value-of select="."/>
</xsl:for-each>
<xsl:text> )</xsl:text>
</xsl:if>
<xsl:text>: </xsl:text>
<xsl:apply-templates mode="inline"/>
<xsl:text> ] </xsl:text>
</xsl:template>
<xsl:template match="*[text() and not(*)]">
<xsl:apply-templates select="@*"/>
<tr><th><xsl:value-of select="name()"/></th>
<td><xsl:apply-templates/></td></tr>
</xsl:template>
<xsl:template match="*[(* or @*) and not(text())]">
<tr><td colspan="2"><fieldset><legend><xsl:value-of select="name()"/></legend>
<table><xsl:apply-templates select="@*"/><xsl:apply-templates/></table></fieldset></td></tr>
</xsl:template>
<xsl:template match="*[not(*|@*|text())]">
<tr><td colspan="2"><xsl:value-of select="name()"/></td></tr>
</xsl:template>
<xsl:template match="@*">
<tr><th><em><xsl:value-of select="name()"/></em></th>
<td><xsl:value-of select="."/></td></tr>
</xsl:template>
</xsl:stylesheet>
答案 4 :(得分:3)
在asp:Literal
元素中声明自己为<pre>
。
<pre><asp:Literal ID="foo" runat="server" /></pre>
将xml字符串分配给文字:
foo.Text = CreatedIndentedXmlString("<foo><bar>6</bar></foo>");
public string CreatedIndentedXmlString(string inXml)
{
if (inXml.Length == 0) return "";
XElement x = XElement.Parse(inXml);
return Server.HtmlEncode(x.ToString());
}
答案 5 :(得分:2)
如何更换“&lt;”与&amp; lt;然后填入&lt; pre&gt;块。用户无法编辑它,但无论如何你肯定有比textarea更好的工具,对吗?
答案 6 :(得分:1)
您可以使用java脚本代码着色器。至于格式化,xml writer(我知道)可以输出结构良好的文档,默认情况下可以关闭以减轻重量。
答案 7 :(得分:1)
如果您正在寻找一个简单的Xml结构,那么默认的IE视图(具有可折叠节点等)。
IE转换在这里:res://msxml.dll/DEFAULTSS.xsl。
xslt版本可在this等地方在线获取。我在没有更人性化的转换但仍希望以格式化的方式看到Xml的地方使用它。