zoukankan      html  css  js  c++  java
  • NativeXML入门

    uses NativeXml;

    procedure TForm1.Button1Click(Sender: TObject);
    begin
      Caption := fXML.Root.FindNode('father').Value;    {tom}
    end;

    procedure TForm1.CreateXMLClick(Sender: TObject);
    begin
      fXML.CreateName('root');                    // create root node
      with fXML.Root.NodeNew('student') do begin  // create level 1 sub node
        WriteAttributeString('class', '88');
        WriteString('name', 'baby');
        WriteInteger('age', 18);
        with NodeNew('FamilyMember') do begin     // create level 2 sub node
          WriteString('father', 'tom');
          WriteString('mother', 'jene');
        end;
      end;
      fXML.SaveToFile('1.xml');
    end;

    procedure TForm1.FormCreate(Sender: TObject);
    begin
      fXML := TNativeXml.Create(Self);
    end;

  • 相关阅读:
    Redis进阶
    redis常用指令
    MarkDown基本语法
    JAVA多线程面试
    使用POI操作Excel
    IDEA+GIT的使用
    获取地址栏的参数
    mybatis逆向工程
    遍历map集合
    springboot批量删除
  • 原文地址:https://www.cnblogs.com/hnxxcxg/p/2940602.html
Copyright © 2011-2022 走看看