问题描述
<GRAMMARLANGID="804"><!--此为语音号,中文为804--><!--Ruledefinitions--><RULENAME="start"TOPLEVEL="ACTIVE"><O>药名</O><RULEREFNAME="medicine"PROPNAME="chosenmedicine"/></RULE><RULENAME="medicine"><LPROPNAME="medicinevalue"><PVAL="1">中药</P><PVAL="2">云南白药</P><PVAL="3">当归</P><PVAL="4">陈皮</P><PVAL="5">枸杞</P><PVAL="6">杏仁</P><PVAL="7">取消</P><PVAL="8">查询</P><PVAL="9">麻黄</P><PVAL="10">桂枝</P></L></RULE></GRAMMAR>插入<PVAL="1">首乌</P>到里面去怎么做?XmlDocumentxmlDoc=newXmlDocument();xmlDoc.Load("C:\sj.xml");XmlNoderoot=xmlDoc.SelectSingleNode("L");//请问这里怎么定位到L节点???XmlElementxe1=xmlDoc.CreateElement("P");xe1.SetAttribute("VAL",""1"");xe1.InnerText=textBox1.Text;root.AppendChild(xe1);//这里初始化错误。。。xmlDoc.Save("C:\sj.xml");
时间: 2025-01-30 02:03:07