我正在使用XmlWriter
创建类似Xml的格式。但是在输出中也有版本信息。
<?xml version="1.0" encoding="utf-8"?>
我的文件中不需要这个。我怎样才能做到这一点?有没有办法通过代码删除它?
答案 0 :(得分:19)
使用ConformanceLevel
和OmitXmlDeclaration
属性。例如:
XmlWriter w;
w.Settings = new XmlWriterSettings();
w.Settings.ConformanceLevel = ConformanceLevel.Fragment;
w.Settings.OmitXmlDeclaration = true;
答案 1 :(得分:11)
创建XmlWriter时,使用XmlWriterSettings传递所需的设置:
XmlWriterSettings settings = new XmlWriterSettings();
settings.OmitXmlDeclaration = true;
writer = XmlWriter.Create(Console.Out, settings);
XmlWriterSettings也有其他属性(缩进等)。
答案 2 :(得分:0)