小编use*_*198的帖子

Delphi XML遍历

我是Delphi的新手.

我想找到每个主题下的所有作者.

这是我的XML

<?xml version="1.0"?>
<catalog>
   <subject id="computer">
       <book id="bk101">                                                            
          <author>Gambardella, Matthew</author>                                  
          <title>XML Developer's Guide</title>                                   
          <genre>Computer</genre>                                                
          <price>44.95</price>                                                   
          <publish_date>2000-10-01</publish_date>                                
          <description>An in-depth look at creating applications                 
          with XML.</description>                                                
       </book>                                                                   
       <book id="bk112">                                                         
          <author>Galos, Mike</author>                                           
          <title>Visual Studio 7: A Comprehensive Guide</title>                  
          <genre>Computer</genre>                                                
          <price>49.95</price>                                                   
          <publish_date>2001-04-16</publish_date>                                
          <description>Microsoft Visual Studio 7 is explored in depth,           
          looking at how Visual Basic, Visual C++, C#, and ASP+ are              
          integrated into a comprehensive development                            
          environment.</description>                                             
       </book>                                                                   
   </subject>
   <subject id="literature">
       <book id="bk102">                                                         
          <author>Ralls, Kim</author>                                            
          <title>Midnight Rain</title>                                           
          <genre>Fantasy</genre>                                                 
          <price>5.95</price>                                                    
          <publish_date>2000-12-16</publish_date>                                
          <description>A former …
Run Code Online (Sandbox Code Playgroud)

xml delphi delphi-2007

4
推荐指数
1
解决办法
993
查看次数

标签 统计

delphi ×1

delphi-2007 ×1

xml ×1