2

XML ファイルがあり、その一部は次のようになります。

 <wave waveID="1">
    <well wellID="1" wellName="A1">
      <oneDataSet>
        <rawData>0.1123975676</rawData>
      </oneDataSet>
    </well>
    ... more wellID's and rawData continues here...

Perl の libXML を使用してファイルを解析し、次を使用して wellName と rawData を出力しようとしています。

    use XML::LibXML;
    my $parser = XML::LibXML->new();
    my $doc = $parser->parse_file('/Users/johncumbers/Temp/1_12-18-09-111823.orig.xml');
    my $xc = XML::LibXML::XPathContext->new( $doc->documentElement()  );
    $xc->registerNs('ns', 'http://moleculardevices.com/microplateML');

            my @n = $xc->findnodes('//ns:wave[@waveID="1"]');   #xc is xpathContent
        # should find a tree from the node representing everything beneath the waveID 1
        foreach $nod (@n) {
            my @c = $nod->findnodes('//rawData');  #element inside the tree.
            print @c;
        }

現在何も出力されていません。Xpath ステートメントに問題があると思います。修正を手伝ってもらえますか、それとも xpath ステートメントのトラブルシューティング方法を教えてもらえますか? ありがとう。

4

2 に答える 2

2

「wave」要素が名前空間にある場合、「rawData」要素も同様であるため、おそらく使用する必要があります

foreach $nod (@n) {
    my @c = $xc->findnodes('descendant::ns:rawData', $nod);  #element inside the tree.
    print @c;
}
于 2010-01-17T11:54:25.973 に答える
2

findnodesループで使用する代わりに、 getElementsByTagName()を使用します。

my @c = $nod->getElementsByTagName('rawData');

@c処理を配列に使用するその他の便利な方法を次に示します。

$c[0]->toString;    # <rawData>0.1123975676</rawData>
$c[0]->nodeName;    # rawData
$c[0]->textContent; # 0.1123975676
于 2010-01-17T02:50:00.793 に答える