UTF-8格式的文件有两种,一种是带BOM头的,一种是不带BOM头的。在.NET中生成的UTF8格式的xml文件默认是带BOM头的。有时候为了兼容,需要生成不带BOM头的UTF8格式的xml文件。此时可以采用如下方法:
原文链接:https://www.f2er.com/xml/300577.htmlXmlWriterSettings xws = new XmlWriterSettings();
xws.Encoding = new UTF8Encoding(false); // 指定UTF8格式关闭BOM头
XmlWriter rwr = XmlReader.Create("test.XML",xws);
rwr.Save(...);