码迷,mamicode.com
首页 > Windows程序 > 详细

delphi XML简单处理

时间:2017-06-07 20:59:24      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:des   vcl   click   value   处理   mem   adf   windows   mfile   

unit Unit1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Xml.XMLDoc, Xml.xmldom, Xml.XMLIntf,
  Vcl.StdCtrls;

type
  TForm1 = class(TForm)
    Memo1: TMemo;
    Button1: TButton;
    Button2: TButton;
    Button3: TButton;
    Button4: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
    procedure Button4Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
var
  IDoc: IXMLDocument;
  Root, N1, N2, N3: IXMLNode;
  I: Integer;
begin
  IDoc := TXMLDocument.Create(nil);
  IDoc.Active := True;
  Root := IDoc.AddChild(公司);
  for I := 1 to 9 do
  begin
    N1 := Root.AddChild(部门);
    N1.Attributes[Id] := I;
    N1.AddChild(名称).NodeValue := 部门_+I.ToString;
    N1.AddChild(主管).NodeValue := 主管_+I.ToString;
  end;
  IDoc.SaveToFile(d:\jjw.xml);
end;

procedure TForm1.Button2Click(Sender: TObject);
var
  Doc: IXMLDocument;
  Node: IXMLNode;
  I: Integer;
begin
  Doc := TXMLDocument.Create(nil);
  Doc.LoadFromFile(d:\jjw.xml);
  Doc.Active := True;
  Node := Doc.DocumentElement;
  for I := 0 to Node.ChildNodes.Count-1 do
    Node.ChildNodes[I].AddChild(人数).NodeValue := IntToStr(I+1);
  Doc.SaveToFile(d:\jjw.xml);
end;

procedure TForm1.Button3Click(Sender: TObject);
var
  Doc: IXMLDocument;
  Node: IXMLNode;
  I: Integer;
begin
  Doc := TXMLDocument.Create(nil);
  Doc.LoadFromFile(d:\jjw.xml);
  Doc.Active := True;
  Node := Doc.DocumentElement;
  for I := 0 to Node.ChildNodes.Count-1 do
    Node.ChildNodes[I].ChildNodes.Delete(2);
  Doc.SaveToFile(d:\jjw.xml);
end;

procedure TForm1.Button4Click(Sender: TObject);
var
  Doc: IXMLDocument;
  Root, Node: IXMLNode;
  I: Integer;
begin
  Doc := TXMLDocument.Create(nil);
  Doc.LoadFromFile(d:\jjw.xml);
  Doc.Active := True;
  Root := Doc.DocumentElement;
  for I := 0 to Root.ChildNodes.Count-1 do
  begin
    Node := Root.ChildNodes[I];
    if Node.Attributes[Id]=3 then
      Node.ChildNodes[2].NodeValue := 33333;
  end;
  Doc.SaveToFile(d:\jjw.xml);
end;

end.

 

delphi XML简单处理

标签:des   vcl   click   value   处理   mem   adf   windows   mfile   

原文地址:http://www.cnblogs.com/Jiaojiawang/p/6958763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!