XML文件是這樣的:使用perl XML ::的libxml來處理XML,所以慢慢地
<?xml version="1.0" encoding="UTF-8"?>
<resource-data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="resource-data.xsd">
<class name="AP">
<attributes>
<resourceId>00 11 B5 1B 6D 20</resourceId>
<lastModifyTime>20130107091545</lastModifyTime>
<dcTime>20130107093019</dcTime>
<attribute name="NMS_ID" value="DNMS" />
<attribute name="IP_ADDR" value="10.11.141.111" />
<attribute name="LABEL_DEV" value="00 11 B5 1B 6D 20" />
</attributes>
<attributes>
<resourceId>00 11 B5 1B 6D 21</resourceId>
<lastModifyTime>20130107091546</lastModifyTime>
<dcTime>20130107093019</dcTime>
<attribute name="NMS_ID" value="DNMS" />
<attribute name="IP_ADDR" value="10.11.141.112" />
<attribute name="LABEL_DEV" value="00 11 B5 1B 6D 21" />
</attributes>
</class>
</resource-data>
而且我的代碼:
#!/usr/bin/perl
use Encode;
use XML::LibXML;
use Data::Dumper;
$parser = new XML::LibXML;
$struct = $parser->parse_file("d:/AP_201301073100_1.xml");
my $file_data = "d:\\ap.txt";
open IN, ">$file_data";
$rootel = $struct->getDocumentElement();
$elname = $rootel->getName();
@kids = $rootel->getElementsByTagName('attributes');
foreach $child (@kids) {
@atts = $child->getElementsByTagName('attribute');
foreach $at (@atts) {
$va = $at->getAttribute('value');
print IN encode("gbk", "$va\t");
}
print IN encode("gbk", "\n");
}
close(IN);
我的問題是,如果XML文件是隻80MB然後程序會非常快,但是當XML文件大得多時,程序會非常慢。有人可以幫我加快速度嗎?
我認爲[流](HTTP:// coldattic。 info/shvedsky/pro/blogs/a-foo-walking-into-bar/posts/55)基於解析器推薦用於大型xml文件 –
我只需要如何修改我的程序,你能否幫助我。 – John
btw,使用'open IN,「>:encoding(gbk)」,$ file_data;'而不是編碼遍佈整個地方。 – ikegami