Out of memory error while parsing a specific excel file from a Perl Program - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T16:10:44Z http://stackoverflow.com/feeds/question/560940 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/560940/out-of-memory-error-while-parsing-a-specific-excel-file-from-a-perl-program 0 Out of memory error while parsing a specific excel file from a Perl Program Pankaj 2009-02-18T12:52:25Z 2009-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&gt;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-&gt;new( CellHandler =&gt; \&amp;cell_handler, NotSetCell =&gt; 1 ); my $workbook = $parser-&gt;Parse('testfile.xls'); sub cell_handler { my $workbook = $_[0]; my $sheet_index = $_[1]; my $row = $_[2]; my $col = $_[3]; my $cell = $_[4]; print $cell-&gt;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#561049 4 Answer by jmcnamara for Out of memory error while parsing a specific excel file from a Perl Program jmcnamara 2009-02-18T13:28:43Z 2009-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>