我暂时没有使用XML,有人可以发布构建和保存xml节点结构所需的语法,该结构类似于由递归函数创建的树结构。
基本上我有一个递归函数,可以保存找到一个页面(url)的数据,然后跟踪在该页面上找到的每个URL recursivley并对它做同样的事情。审计这个我想要一个输出作为磁盘的xml文件,所以我可以看到它是如何进行递归和解析。
我的代码如下。请添加创建xml结构所需的xml调用,如下所示。 (请包括全名空间,以便我可以看到.net中我需要的对象的位置。)
page1.htm上有2个链接:
<a href=page1_1.htm>
<a href=page1_2.htm>
page1_1.htm上有2个链接
<a href=page1_1_a.htm> (this then will have some links also)
<a href=page1_1_b.htm> (this then will have no more links on it - dead end)
xml应该做这样的事情:
<node url=page1.htm>
...<node url=page1_1_a.htm>
...... <node url="xxx.htm"/>
...... <node url="yyy.htm".>
... </node>
...<node url=page1_1_b.htm />
</node>
答案 0 :(得分:2)
为了启动,请尝试以下名称空间,它包含xml生成和操作的所有类
XmlTextWriter xWriter = new XmlTextWriter(Console.Out);
xWriter.WriteStartElement("prefix", "Element1", "namespace");
xWriter.WriteStartAttribute("prefix", "Attr1", "namespace1");
xWriter.WriteString("value1");
xWriter.WriteStartAttribute("prefix", "Attr2", "namespace2");
xWriter.WriteString("value2");
xWriter.Close();
如果您熟悉LINQ,请查看
这是一个示例
XDocument srcTree = new XDocument(
new XComment("This is a comment"),
new XElement("Root",
new XElement("Child1", "data1"),
new XElement("Child2", "data2"),
)
);
XDocument doc = new XDocument(
new XComment("This is a comment"),
new XElement("Root",
from el in srcTree.Element("Root").Elements()
where ((string)el).StartsWith("data")
select el
)
);
Console.WriteLine(doc);
答案 1 :(得分:1)
答案 2 :(得分:1)
如果您已有对象树,则另一个选择是使用XML Serialization为您进行转换。
答案 3 :(得分:1)
我有这个XML文档可以在运行时动态生成。
<?xml version="1.0" encoding="utf-8"?>
<wap-provisioningdoc>
<characteristic type="BOOTSTRAP">
<parm name="NAME" value="SYNCSETTINGS" />
</characteristic>
<characteristic type="APPLICATION">
<parm name="APPID" value="w5" />
<parm name="TO-NAPID" value="INTERNET" />
<parm name="NAME" value="SYNCSETTINGS" />
<parm name="ADDR" value="http://syncserver/sync" />
<characteristic type="RESOURCE">
<parm name="URI" value="pb" />
<parm name="NAME" value="Contacts DB" />
<parm name="AACCEPT" value="text/x-vcard" />
</characteristic>
<characteristic type="RESOURCE">
<parm name="URI" value="cal" />
<parm name="NAME" value="Calendar DB" />
<parm name="AACCEPT" value="text/x-vcalendar" />
</characteristic>
<characteristic type="RESOURCE">
<parm name="URI" value="notes" />
<parm name="NAME" value="Notes DB" />
<parm name="AACCEPT" value="text/plain" />
</characteristic>
<characteristic type="APPAUTH">
<parm name="AAUTHNAME" value="username" />
<parm name="AAUTHSECRET" value="password" />
</characteristic>
</characteristic>
</wap-provisioningdoc>
这是我使用C#3.0和Linq生成此XML文档的方式。
public string CreateOTAXmlFile(string Username, string Password)
{
var ota = new XDocument(
new XElement("wap-provisioningdoc",
new XElement("characteristic", new XAttribute("type", "BOOTSTRAP"),
new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "SYNCSETTINGS"))
),
new XElement("characteristic", new XAttribute("type", "APPLICATION"),
new XElement("parm", new XAttribute("name", "APPID"), new XAttribute("value", "w5")),
new XElement("parm", new XAttribute("name", "TO-NAPID"), new XAttribute("value", "INTERNET")),
new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "SYNCSETTINGS")),
new XElement("parm", new XAttribute("name", "ADDR"), new XAttribute("value", "http://syncserver/sync")),
new XElement("characteristic", new XAttribute("type", "RESOURCE"),
new XElement("parm", new XAttribute("name", "URI"), new XAttribute("value", "pb")),
new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "Contacts DB")),
new XElement("parm", new XAttribute("name", "AACCEPT"), new XAttribute("value", "text/x-vcard"))
),
new XElement("characteristic", new XAttribute("type", "RESOURCE"),
new XElement("parm", new XAttribute("name", "URI"), new XAttribute("value", "cal")),
new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "Calendar DB")),
new XElement("parm", new XAttribute("name", "AACCEPT"), new XAttribute("value", "text/x-vcalendar"))
),
new XElement("characteristic", new XAttribute("type", "RESOURCE"),
new XElement("parm", new XAttribute("name", "URI"), new XAttribute("value", "notes")),
new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "Notes DB")),
new XElement("parm", new XAttribute("name", "AACCEPT"), new XAttribute("value", "text/plain"))
),
new XElement("characteristic", new XAttribute("type", "APPAUTH"),
new XElement("parm", new XAttribute("name", "AAUTHNAME"), new XAttribute("value", Username)),
new XElement("parm", new XAttribute("name", "AAUTHSECRET"), new XAttribute("value", Password))
)
)
)
);
ota.Save(Server.MapPath("~/OTA/") + Username + ".xml");
return (ota.ToString());
}
答案 4 :(得分:0)
您想要的对象位于System.Xml
命名空间。
XmlDocument doc = new XmlDocument();
doc.AppendChild(CreateNodeElement(doc, rootNode));
doc.Save(fileName);
...
private XmlElement CreateNodeElement(XmlDocument doc, Node node)
{
XmlElement output = doc.CreateElement("node");
output.Attributes.Append(doc.CreateAttribute("url")).Value = node.Url;
foreach(Node child in node.Links)
{
output.AppendChild(CreateNodeElement(doc, child));
}
return output;
}
答案 5 :(得分:0)
如果您使用的是3.5或更高版本,请使用最新且最好的XDocument课程。它会让你坠入爱河!