Can anyone recommend a good way to create and read an OpenOffice spreadsheet in Perl?
|
1
|
|
|
|
|
|
I think that the open office native document format is based around the OpenDocument specifications, and is bascially a zip compressed XML format. This being true you could probably manipulate it using your perl XML manipulation tools of choice. Alternatively, there's the Open Office OpenDocument Connector suite of modules on the CPAN which offers a high level API to the OpenDocument spec. To my knowledge, the table methods in these modules should allow for both reading and writing data in OO Calc documents. |
||||||||
|
|
|
OpenOffice supports a number of formats, if you are looking for something that can read/write Excel-compatible spreadsheets check out Spreadsheet::ParseExcel for reading, and Spreadsheet::WriteExcel for writing. I have used them both, they are pretty mature and work well. |
||
|
|
|
|
I used OpenOffice::OOCBuilder for creating large color-coded tables. Liked it very much. For simpler tasks, I often use plain CSV format that is readily opened by any spreadsheet program However, you might chose the Excel stuff for compatibility with other people. |
||
|
|
