Spreadsheet::WriteExcel accepts a valid filehandle as an argument to new() as of version 0.31. The best way to achieve what you want is via a tied scalar and the IO::Scalar module which is part of the IO::Stringy distribution. For example:
#!/usr/bin/perl -w
use strict;
use Spreadsheet::WriteExcel;
use IO::Scalar;
# Write an Excel file to a string via IO::Scalar.
# Refer to the IO::Scalar documentation for further details.
#
my $a;
tie *XLS, 'IO::Scalar', \$a;
# Create a spreadsheet and write something to it.
#
my $workbook = Spreadsheet::WriteExcel->new(\*XLS);
my $worksheet = $workbook->addworksheet();
$worksheet->write(0, 0, "Hi Excel!");
$workbook->close(); # This is required
# The Excel file is now in $a. As a demonstration, print it to a f
+ile.
#
open TMP, "> test.xls";
binmode(TMP);
print TMP $a;
There are further examples of using filehandles with Spreadsheet::WriteExcel in the filehandle.pl program that is in the examples directory of the distribution.
John.
--
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|