in reply to Re^2: Spreadsheet::WriteExcel large files (text versus binary format)
in thread Spreadsheet::WriteExcel large files
What is confusing for me is that both the 6 Mega file and the 100 Mega file are Microsoft office documents that are not ASCAII encoded.... So why is one so much larger than the other?
My guess is that the smaller contains just the results, whereas the the larger contains the formulae used to derive those results. But that is only a guess.
Also, they have the same amount of lines
Using wc -l on binary files is not useful. It only tells you how many bytes with the value 13 decimal it contains. But those bytes are probably not newlines but rather just bytes within packed binary values that happen to look like newlines.
I would have thought your simplest option would be to open each of the files using Excel (or other program that can read .xls files) and inspect what they each contain.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Spreadsheet::WriteExcel large files (text versus binary format)
by mrguy123 (Hermit) on Jan 02, 2012 at 13:08 UTC | |
by BrowserUk (Patriarch) on Jan 02, 2012 at 13:16 UTC | |
by mrguy123 (Hermit) on Jan 02, 2012 at 13:51 UTC |