Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
からsave_content() メソッドのエンコーディングに影響を与える方法はありWWW::Mechanizeますか?
WWW::Mechanize
いいえ。そうする必要がある場合は、自分でファイルを開き (必要なエンコーディングを指定して)、そこに出力$mech->contentします。
$mech->content
または、このように書くこともできます
open my $fh, '>:encoding(utf-8)', $file_name or die $!; my $res = $mech->get( $url, ':content_cb' => sub{ print $fh shift } );