vote up -2 vote down star

How can I make Data::Dumper write a dump into a file?

flag

4  
Dumper() simply outputs a string, use it like any other string going to a file (see below). – Jack M. Jul 14 at 15:25
i have huge dump value , so i need to keep that into file and having look . – joe Jul 14 at 15:27
Any reason for Down Vote ? – joe Jul 14 at 15:28
@JACK I agree with your point – joe Jul 14 at 15:29
3  
There's always a reason for a downvote. In this case, the question is simply weird. If you don't know how to write to a file in Perl, why don't you just ask that question (which would be a valid reason for a rtfm-answer)? – Manni Jul 14 at 19:05

3 Answers

vote up 10 vote down check

Don't forget that you can specify the file handle to print to as in

print $LOG Dumper( \%some_complex_hash );

or use File::Slurp:

write_file 'mydump.log', Dumper( \%some_complex_hash );

Further thoughts: You might want to get into the habit of using:

warn Dumper( \%some_complex_hash );

and redirecting standard error to a file when you invoke your script (how you do this depends on the shell). For example:

 C:\Temp> sdf.pl 2>dump
link|flag
I'm curious: what advantage does File::Slurp offer here? – Telemachus Jul 14 at 16:35
If all I want is to dump a complex data structure to a file for debugging purposes, it is more self contained than open / print / close: no filehandles or error messages to mess with. – Sinan Ünür Jul 14 at 16:40
vote up 5 vote down

Use print

print FILE Data::Dumper->Dump($object);
link|flag
vote up 4 vote down

The question is a bit unclear, but are you looking for something like this?

open my $FH, '>', 'outfile';
print $FH Dumper(\%data);
close $FH;

You can restore the data later by using eval.

link|flag
5  
For storing and restoring later, Storable is a much better idea than Data::Dumper + eval: search.cpan.org/perldoc?Storable – Telemachus Jul 14 at 16:37
Telemachus is correct. Storable, YAML, JSON, DBM::Deep or any of one million other serialization modules is a better choice than Data::Dumper + eval. – daotoad Jul 14 at 17:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.