1

我需要存储 xml 数据

<pathway name="path:ko00010" org="ko" number="00010"
             title="Glycolysis / Gluconeogenesis"
             image="http://www.kegg.jp/kegg/pathway/ko/ko00010.png"
             link="http://www.kegg.jp/kegg-bin/show_pathway?ko00010">
        <entry id="13" name="ko:K01623 ko:K01624 ko:K01622 ko:K11645 ko:K16305 ko:K16306" type="ortholog" reaction="rn:R01070"
            link="http://www.kegg.jp/dbget-bin/www_bget?K01623+K01624+K01622+K11645+K16305+K16306">
            <graphics name="K01623..." fgcolor="#000000" bgcolor="#BFBFFF"
                 type="rectangle" x="483" y="404" width="46" height="17"/>
        </entry>
 </pathway>

到数据结构中以供进一步使用。DS 喜欢哈希和数组,这是我的代码

#!/usr/bin/perl                                                                                                                                                                                                                                                                                                                                                             

use XML::LibXML;
use strict;
use warnings;
my $parser = new XML::LibXML;

my $xmlp= $parser -> parse_file("ko00010.xml");
my $rootel = $xmlp -> getDocumentElement();

my $elname = $rootel -> getName();
my @rootelements=$rootel -> getAttributes();


foreach my $rootatt(@rootelements){
    my  $name = $rootatt -> getName();
    my $value = $rootatt -> getValue();
    print " ${name}[$value]\n ";
}

my @kids = $rootel -> childNodes();
foreach my $child(@kids) {
    my $elname = $child -> getName();
    my @atts = $child -> getAttributes();
    foreach my $at (@atts) {
        my $name = $at -> getName();
        my $value = $at -> getValue();
        print " ${name}[$value]\n ";

    }
}

到目前为止,我可以访问除 Graphics 节点及其子节点之外的所有元素

4

4 回答 4

6

另一种完全不同的方法:使用 XML 模式,并使用 CPAN 模块XML::Compile自动转换XML 数据。与其他 xml 到数据工具XML::SimpleXML::Compile

如果您的数据没有 XML 模式,那么您可以自动创建一个trang

trang testdata.xml schema.xsd

XML::Compile带有xml2yaml用于快速转换的命令行工具:

xml2yaml testdata.xml schema.xsd > testdata.yaml
于 2013-07-18T12:13:26.520 回答
2

我不清楚您要准确创建什么数据结构。或者当您可以使用 XPath 来获取您需要的数据而无需将 XML 映射到其他东西时为什么要创建数据结构。

在我看来,您有点想模仿XML::Simple所做的事情。在这种情况下,不直接使用 XML::Simple 吗?我知道一般不建议将它用于任何复杂的 XML,但是如果您的 XML 很简单并且 XML::Simple 创建的数据适合您,那么使用广泛使用的模块可能比尝试重写它更安全(我应该知道,我用 XML::Twig 重写了它,这并不是特别困难,但也不一定完全微不足道)。

于 2013-07-18T13:23:00.093 回答
1

你需要做

my @grand_kids = $child -> childNodes();

在您的第二次 foreach 中并通过属性再执行一步

我已经为你工作了这个例子

#!/usr/bin/perl     
use XML::LibXML;
use strict;
use warnings;
my $parser = new XML::LibXML;

my $xmlp= $parser->parse_file("ko00010.xml");
my $rootel = $xmlp->getDocumentElement();

my $elname = $rootel->getName();
my @rootelements=$rootel->getAttributes();

foreach my $rootatt(@rootelements){
    printf "R {%s}[%s]\t", $rootatt->getName(), $rootatt->getValue();
}

my @kids = $rootel -> childNodes();
foreach my $child(@kids) {
    printf "\nCH = %s\n",  $child->getName();
    my @atts = $child->getAttributes();
    foreach my $at (@atts) {
        printf "C {%s}[%s]\t", $at->getName(), $at->getValue();
    }
    my @grand_kids=$child->childNodes();
    foreach my $grand_child(@grand_kids) {
        printf "\nGR CH = %s\n",  $grand_child->getName();
        my @atts2 = $grand_child->getAttributes();
        foreach my $at2 (@atts2) {
            printf "GC {%s}[%s]\t", $at2->getName(), $at2->getValue();
        }
    }
}

给出这个输出 - (我不确定#text节点来自哪里)

R {name}[path:ko00010]  R {org}[ko] R {number}[00010]   R {title}[Glycolysis / Gluconeogenesis] R {image}[http://www.kegg.jp/kegg/pathway/ko/ko00010.png]   R {link}[http://www.kegg.jp/kegg-bin/show_pathway?ko00010]  
CH = #text

CH = entry
C {id}[13]  C {name}[ko:K01623 ko:K01624 ko:K01622 ko:K11645 ko:K16305 ko:K16306]   C {type}[ortholog]  C {reaction}[rn:R01070] C {link}[http://www.kegg.jp/dbget-bin/www_bget?K01623+K01624+K01622+K11645+K16305+K16306]   
GR CH = #text

GR CH = graphics
GC {name}[K01623...]    GC {fgcolor}[#000000]   GC {bgcolor}[#BFBFFF]   GC {type}[rectangle]    GC {x}[483] GC {y}[404] GC {width}[46]  GC {height}[17] 
GR CH = #text

CH = #text
于 2013-07-18T11:56:32.653 回答
0

XML::Simple 可以,但也建议使用 LibXML。这是一篇关于一些显着差异以及从 XML::Simple 转换为 LibXML的perlmonks 文章。

使用XPathContextfindnodes使用 LibXML 的一种方法:

use strict;
use warnings;
use XML::LibXML;
use Data::Dumper;

my $parser    = XML::LibXML->new();
my $doc       = $parser->parse_file("ko00010.xml");
my $root      = $doc->getDocumentElement();
my %nodeHash  = ();

# get list of nodes and stores each nodeName(key) and textContent(value) in %nodeHash
my $perlmatch = sub {
    die "Not a nodelist"
      unless $_[0]->isa('XML::LibXML::NodeList');
    die "Missing a regular expression"
      unless defined $_[1];
    my $i = 0;
    while ( my $node = $_[0]->get_node($i++) ) {
        push @{ $nodeHash{$node->nodeName} }, $node->textContent; 
    }
};

# Create XPathContext and find all nodes
my $xc = XML::LibXML::XPathContext->new($root);
$xc->registerFunction( 'perlmatch', $perlmatch ); # register 'perlmatch' function   
$xc->findnodes('perlmatch(//*, ".")') or die "Error retrieving nodes."; # //* is to go through all parent and child nodes, "." to match any nodeName

print Dumper(%nodeHash); # print the contents of nodeHash (you can see the final hash structure here)

取自CPAN XML::LibXML::XPath上的示例(所有节点都替换为哈希而不是数组和“.”)。

于 2014-07-28T15:26:44.987 回答