vote up 3 vote down star
1

Can anyone recommend a good way to create and read an OpenOffice spreadsheet in Perl?

flag

3 Answers

vote up 6 vote down check

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.

link|flag
search.cpan.org/perldoc?OpenOffice::OODoc::Intro/… – Brad Gilbert Nov 10 '08 at 17:31
@Brad Gilbert : is that not identical to my link ? – cms Nov 10 '08 at 17:50
@cms: Brad's link is to the distribution instead of a specific version. This is considered better form. See stackoverflow.com/questions/43758/…. I've edited your post accordingly. – Michael Carman Nov 10 '08 at 21:33
@Michael Carman: thanks, that's more clear than a comment. Makes perfect sense. – cms Nov 10 '08 at 22:36
vote up 3 vote down

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.

link|flag
vote up 4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.