当我尝试使用以下代码下载某些HTML文件时:
$mech->get($link)
$mech->save_content("file.html");
我收到警告:
Wide character in print at C:/strawberry/perl/site/lib/WWW/Mechanize.pm line 2040.
有人可以解释我如何修复此警告吗?
答案 0 :(得分:10)
您需要确保使用正确的编码打开输出文件句柄。
简单地看一下文档,看起来Mech对保存的文件没有可配置的编码,因此您可以抓取内容并自行保存:
$mech->get( $link );
my $content = $mech->content;
open my $fh, '>:utf8', $file or die "$file: $!";
print $fh $content;
:utf8
中的open
位将确保发送到文件句柄的数据被正确编码为UTF-8。
另一种方法是手动编码:
use Encode;
my $content = encode 'utf8', $mech->content;
open my $fh, '>', $file or die "$file: $!";
binmode $fh;
print $fh $content;
答案 1 :(得分:7)
在版本1.73之前,您必须使用solution posted by @friedo手动保存内容。
从那时起,save_content()
允许您在打开文件句柄时设置Mechanize使用的I / O层。通过将binmode设置为:utf8
,如下所示,在没有警告的情况下写入宽字符:
$mech->save_content("file.html", binmode => ':utf8');