Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: pp module messes encoding

by Anonymous Monk
on May 14, 2011 at 14:10 UTC ( [id://904830]=note: print w/replies, xml ) Need Help??


in reply to pp module messes encoding

pm904757.pl
use strict; use warnings; use feature 'state'; use WWW::Mechanize; use Path::Class qw' file dir '; Main( @ARGV ); exit( 0 ); sub Main { my $mech = WWW::Mechanize->new(); #$mech->get('http://www.google.co.il'); $mech->get('http://tv.walla.co.il/?w=/2//200//2011-05-14/1'); my $content = $mech->content( format => 'text' ); my $thisf = file($0)->absolute; my $thisd = $thisf->dir; chdir $thisd or die "Cannot chdir($thisd): $!"; my $out = $thisf->basename; $out = "$out-out.txt"; writeFile( $out,$content); print join ' ', -s $out, $out, "\n"; } sub writeFile #form: writeFile(path,content) { my $filepath = shift; open my($txt), ">:utf8",$filepath or die "Cannot open $filepath : $! +"; print $txt "\x{feff}".join('',@_); close $txt ; }
packing
$ pp pm904757.pl $ a The locale codeset (cp1252) isn't one that perl can decode, stopped at + Encode/Locale.pm line 87. Compilation failed in require at LWP/UserAgent.pm line 976. $ pp -x pm904757.pl $ a 6294 a.exe-out.txt $ perl pm904757.pl 6281 pm904757.pl-out.txt
more runs
$ a 6294 a.exe-out.txt $ perl pm904757.pl 6281 pm904757.pl-out.txt $ a 6294 a.exe-out.txt $ perl pm904757.pl 6325 pm904757.pl-out.txt $ a 6330 a.exe-out.txt $ perl pm904757.pl 6323 pm904757.pl-out.txt $ perl pm904757.pl 6330 pm904757.pl-out.txt

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://904830]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-25 05:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found