通过string xmlString =SceneControl.Scene.ToXML()或MapControl.Map.ToXML()接口获取到的字符串是sml格式的,保存为xml文件不成功,报错,“sml”是未声明的前缀,请问需要如何保存?
XmlDocument xmldoc = new XmlDocument();
xmldoc.LoadXml(xmlString);
if (File.Exists(fileParh))
{
File.Delete(fileParh);
}
xmldoc.Save(fileParh);