问题描述
//创建XMLXmlDocumentxmlDoc=newXmlDocument();XmlDeclarationxmlDecl=xmlDoc.CreateXmlDeclaration("1.0","UTF-8",null);//加入XML的声明段落,<?xmlversion="1.0"encoding="UTF-8"?>xmlDoc.AppendChild(xmlDecl);XmlElementlistings=xmlDoc.CreateElement("","listings","");//加入一个根元素listings.SetAttribute("xmlns:xsi","http://www.w3.org/2001/XMLSchema-instance");//添加属性xmlns:xsilistings.SetAttribute("xsi:noNamespaceSchemaLocation","http://local.google.com/local_feed.xsd");//添加属性xsi:noNamespaceSchemaLocationxmlDoc.AppendChild(listings);
最后导出的xml文件中显示的是“noNamespaceSchemaLocation”而不是“xsi:noNamespaceSchemaLocation”
解决方案
解决方案二:
无人顶一个?
解决方案三:
问题解决了吗?
时间: 2024-11-01 19:19:15