我已经使用了一个星期了,我仍然找不到合适的解决方案。我解析包含以UTF-8编码的波兰字母的html文件。提取信息后,我感兴趣的是我将它们保存到文件或打印到控制台,但所有抛光字符都没有正确显示。
我曾尝试使用我在Stack Overflow和其他论坛上找到的所有内容,但由于某些原因对其他人有用的东西对我不起作用。 我用过:
use open qw(:std :utf8);
use HTML::TreeBuilder qw( );
use Object::Destroyer qw( );
#and many others;
这是我的perl代码:
use strict;
use warnings;
use feature 'say';
use HTML::TreeBuilder;
use File::Find;
use Encode;
my $location="C:\\MyLocation";
open (MYFILE, '>>data.txt');
sub find_txt {
my $F = $File::Find::name;
if ($F =~ /index.html$/ ) {
my $tr = HTML::TreeBuilder->new->parse_file('index.html');
for my $div ($tr->look_down(_tag => 'h2', 'class' => 'featured')) {
say $div->as_text;
print (MYFILE $div->as_text);
}
for my $div ($tr->look_down(_tag => 'div', 'class' => 'post-content')) {
for my $t ($div->look_down(_tag => 'p')) {
say $t->as_text;
print (MYFILE $t->as_text);
}
}
for my $div ($tr->look_down(_tag => 'h4', 'class' => 'related-posts')) {
for my $t ($div->look_down(_tag => 'a')) {
say $t->as_text;
print (MYFILE $t->as_text);
}
}
}
}
find(\&find_txt, $location);
close (MYFILE);
这是导致问题的html文件:
<div class="post-content">
<p>(łac. abacus)</p>
<p>1. płyta będąca najwyższą częścią kolumny</p>
<p>2. w starożytności – deska do liczenia, pierwowzór liczydła</p>
我不确定您是否能够在浏览器中显示波兰字符,但是由unicode编码的一些字符为104,106,118,141,143,D3,15A,179,17B,105,107 ,119,142,144,F3,15B,17A,17C
答案 0 :(得分:3)
您可以使用给定的字符集明确打开文件
...
open (my $MYFILE, '>>:utf8','index.html'); # explicitly open MYFILE with utf8 charset
...
my $tr = HTML::TreeBuilder->new->parse_file($MYFILE);
...
OR 使用IO :: HTML自动检测已打开文件的字符集。
...
use IO::HTML; # exports html_file by default
...
my $tr = HTML::TreeBuilder->new->parse_file(html_file('index.html'));
....
man HTML :: TreeBuilder
parse_file
....
When you pass a filename to "parse_file", HTML::Parser opens it in binary mode,
which means it's interpreted as Latin-1 (ISO-8859-1). If the file
is in another encoding, like UTF-8 or UTF-16, this will not do the right thing.
....
SEE ALSO
....
For opening a HTML file with automatic charset detection: IO::HTML.