[求助]关于excel写入数据的问题?

[求助]关于excel写入数据的问题?

[求助]关于excel写入数据的问题?
请问如何用Spreadsheet::WriteExcel把数据写入excel的同时设置数据的类型(比如数据类型)
如下:
#读取
my $oFmtJ = Spreadsheet::ParseExcel::FmtUnicode->new(Unicode_Map => "CP936");
my $oexcel = new Spreadsheet::ParseExcel;
my $obook = $oexcel->Parse('from.xls',$oFmtJ);
......
#写入
my $Map = new Unicode::Map("CP936");
my $workbook = Spreadsheet::WriteExcel->new('to.xls');
......
$worksheet->write_unicode(0,0,$Map->to_unicode($data));#
这样只能写入数据,我想把数据设置为“数据类型“能做到吗?
如果你确定要写入的数据类.
如果你确定要写入的数据类型时,可以从 write_* 选用。否则会自动猜数据类型然后写入。

write_string()
write_number()
write_blank()
write_formula()
write_url()
write_row()
write_col()

看文档 http://xrl.us/ieu5