我使用以下代码创建XML文档:
procedure TForm1.btnCreateXMLClick(Sender: TObject);
var
rootName:string;
childName:string;
attrChild:string;
iXml: IDOMDocument;
iRoot, iNode, iNode2, iChild, iAttribute: IDOMNode;
begin
XMLDoc.Active:=false;
XMLDoc.XML.Text:='';
XMLDoc.Active:=true;
XMLDoc.FileName:='C:\Documents and Settings\a\Desktop\New Text Document.xml';
iXml := XmlDoc.DOMDocument;
//iRoot:=iXml.documentElement(iXml.createElement('xml'));
iRoot := iXml.appendChild(iXml.createElement ('xml'));
// node "test"
iNode := iRoot.appendChild (iXml.createElement ('test'));
iNode.appendChild (iXml.createElement ('test2'));
iChild := iNode.appendChild (iXml.createElement ('test3'));
iChild.appendChild (iXml.createTextNode('simple value'));
iNode.insertBefore (iXml.createElement ('test4'), iChild);
// node replication
iNode2 := iNode.cloneNode (True);
iRoot.appendChild (iNode2);
// add an attribute
iAttribute := iXml.createAttribute ('color');
iAttribute.nodeValue := 'red';
iNode2.attributes.setNamedItem (iAttribute);
// show XML in memo
memXMLOutput.Lines.Text:=FormatXMLData(XMLDoc.XML.Text);
end;
我在memXMLOutput中获得了输出,但是在记事本或IE中看到时,XML文档没有显示输出。问题出在哪儿?提前致谢
最佳答案
删除此:
XMLDoc.FileName:='C:\Documents and Settings\a\Desktop\New Text Document.xml';
在创建XML文档的代码完成后,添加以下内容:
XMLDoc.SaveToFile('C:\Documents and Settings\a\Desktop\New Text Document.xml');
关于delphi - 如何在Delphi 7中使用TXML文档创建XML文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6624914/