本文介绍了XslCompiledTransform输出编码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Xsl;
namespace xslt_samples {
class Program {
static void Main(string[] args) {
XslCompiledTransform myXslTransform = new XslCompiledTransform();
// Here the myXslTransform.OutputSettings is null still...
myXslTransform.Load(@".\in3.xsl");
// The myXslTransform.OutputSettings is not null now, but
// I get an exception: the XmlWriterSettings.Encoding read only.
myXslTransform.OutputSettings.Encoding = Encoding.UTF8;
myXslTransform.Transform(@".\in.xml", @".\out.xml");
}
}
}
问题是指出
如何在这种情况下设置输出编码?
How can I set the output encoding in this case?
谢谢。
推荐答案
使用
XmlWriterSettings xws = myXslTransform.OutputSettings.Clone();
xws.Encoding = Encoding.UTF8;
using (XmlWriter xw = XmlWriter.Create("out.xml", xws))
{
myXslTransform.Transform(@".\in.xml", xw);
}
这篇关于XslCompiledTransform输出编码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!