in reply to Module to read a dumped file

If you don't need to transfer the data between platforms, Storable is up to the job.
$string = freeze($hashref); $hashref = thaw($string);
Also, Data::DumpXML is worth looking into. And the good old Data::Dumper.