Out of memory error while parsing a specific excel file from a Perl Program - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T16:10:44Zhttp://stackoverflow.com/feeds/question/560940http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/560940/out-of-memory-error-while-parsing-a-specific-excel-file-from-a-perl-program0Out of memory error while parsing a specific excel file from a Perl ProgramPankaj2009-02-18T12:52:25Z2009-02-19T13:10:05Z
<p>When the perl code is run the program generates some warnings and terminates. The output is as below:</p>
<pre><code>D:\Perl\bin\search tool>perl testa.pl
UTF-16 surrogate 0xdb79 at D:/Perl/site/lib/Spreadsheet/ParseExcel/FmtDefault.pm line 81.
UTF-16 surrogate 0xdbb1 at D:/Perl/site/lib/Spreadsheet/ParseExcel/FmtDefault.pm line 81.
UTF-16 surrogate 0xd83e at D:/Perl/site/lib/Spreadsheet/ParseExcel/FmtDefault.pm line 81.
UTF-16 surrogate 0xdff8 at D:/Perl/site/lib/Spreadsheet/ParseExcel/FmtDefault.pm line 81.
UTF-16 surrogate 0xdbff at D:/Perl/site/lib/Spreadsheet/ParseExcel/FmtDefault.pm line 81.
UTF-16 surrogate 0xdd98 at D:/Perl/site/lib/Spreadsheet/ParseExcel/FmtDefault.pm line 81.
substr outside of string at D:/Perl/site/lib/Spreadsheet/ParseExcel.pm line 1196.
Use of uninitialized value in unpack at D:/Perl/site/lib/Spreadsheet/ParseExcel.pm line 1196.
substr outside of string at D:/Perl/site/lib/Spreadsheet/ParseExcel.pm line 1196.
Use of uninitialized value in unpack at D:/Perl/site/lib/Spreadsheet/ParseExcel.pm line 1196.
Out of memory!
</code></pre>
<p>The system information is as below : </p>
<p>Perl version : 5.010000
OS name : MSWin32
Module versions: (not all are required)
Spreadsheet::ParseExcel 0.49
Scalar::Util 1.19
Unicode::Map (not installed)
Spreadsheet::WriteExcel (not installed)
Parse::RecDescent (not installed)
File::Temp 0.18
OLE::Storage_Lite 0.18
IO::Stringy 2.110</p>
<p>The perl code is as below :</p>
<pre><code>use strict;
use Spreadsheet::ParseExcel;
my $parser = Spreadsheet::ParseExcel->new(
CellHandler => \&cell_handler,
NotSetCell => 1
);
my $workbook = $parser->Parse('testfile.xls');
sub cell_handler {
my $workbook = $_[0];
my $sheet_index = $_[1];
my $row = $_[2];
my $col = $_[3];
my $cell = $_[4];
print $cell->unformatted(), "\n";
}
</code></pre>
<p>I have the sample testfile.xls also.</p>
http://stackoverflow.com/questions/560940/out-of-memory-error-while-parsing-a-specific-excel-file-from-a-perl-program/561049#5610494Answer by jmcnamara for Out of memory error while parsing a specific excel file from a Perl Programjmcnamara2009-02-18T13:28:43Z2009-02-19T13:10:05Z<p>This question was answered on the Spreadsheet::ParseExcel Google Group <a href="http://groups.google.com/group/spreadsheet-parseexcel/msg/93a9da1f650eded6" rel="nofollow">here</a>.</p>
<p>The problem is that the particular file is encrypted.</p>
<p>John.</p>