因为工作需要,给一些内容的结果需要转换成excel给上面看,所以用perl来实现这个事件,发现perl来写excel实在是太容易了。。我真想学老罗的讲"太容易了,实在是太容易了".
在 2000 年,Takanori Kawai 和 John McNamara 编写出了 Spreadsheet::WriteExcel 和 Spreadsheet::ParseExcel 模块并将它们张贴在 CPAN 上,这两个模块使得在任何平台上从 Excel 文件抽取数据成为可能。
perl写excel这个模块的内容
#!/usr/bin/perl
use strict;
use warnings;
use Encode;
use Spreadsheet::WriteExcel;
# 设置new一个对象出来,并写上需要存成什么名字的xls
my $xls = Spreadsheet::WriteExcel->new( "fukaiss.xls" );
# xml的内容名字
my $xlsContent = $xls->add_worksheet( 'report' );
# 这是对格式的设置,我们可以设置一个标题的,一个内容的,
# 我现在只设置一个内容
my $contentStyle = $xls->add_format();
$contentStyle->set_size( 8 );
$contentStyle->set_bold(); #设置字体为粗体
$contentStyle->set_align( 'center' );#设置单元格居中
$contentStyle->set_text_wrap(); #是否回车换行
$contentStyle->set_color('red'); #设置单元格前景色为红色
# 写表内容(格式是使用上面添加的表格式)
# 这个中的A,B,C是设置的excel中上面行的字母
# 这个地方中的文字我用了decode这样中文才能正常显示
# 最后面的contentStyle是我上面设置的行风格
$xlsContent->write( "A1", decode( 'utf8', "名字" ), $contentStyle );
$xlsContent->write( "B1", decode( 'utf8', "时间" ), $contentStyle );
$xlsContent->write( "C2", decode( 'utf8', "语言" ), $contentStyle );
#$xlsContent->write($row, $col, 'Hi Excel!', $format); #行,列,内容,格式
#这是关闭,上面的内容设置成循环就能生成很多行了
$xls->close();
其它一些有用的设置
# #设置列的宽度 set_column($first_col, $last_col, $width, $format, $hidden, $level, $collapsed)
下面perl是读excel文件内容
我用的Spreadsheet::Read 模块可以读取xls,csv和sxc等格式的文件,这是那本Perl Hacks上非常推荐的读这些的模块.
#!/usr/bin/perl
use Spreadsheet::Read;
use Data::Dumper;
use Smart::Comments;
my $file = '2808861.xls';
my $spreadsheet = ReadData( $file) or die "Cannot read file ";#指定读的文件名
my $sheet_count = $spreadsheet->[0]{sheets} or die "No sheets in $file\n"; #这个是查有几个sheet
for my $sheet_index (1 .. $sheet_count){
my $sheet = $spreadsheet->[$sheet_index] or next;
printf("%s - %2d: [%-s] %3d Cols, %5d Rows\n",
$file,$sheet_index,$sheet->{label},$sheet->{maxcol},$sheet->{maxrow});#label是sheet名
for my $row (1 .. $sheet->{maxrow}) {
print join "\t" => map {
my $data = $sheet->{cell}[$_][$row] ;
defined $data ? $data : "-";
}1 .. $sheet->{maxcol};
print "\n";
};
}
# 传一个输出的文件和一个数组和数组就能输入 execl 啦,记的第一行做标题
sub excelWrite(
my ( $filename, $file ) = @_;
my $xls = Spreadsheet::WriteExcel::Big->new( "$filename" );
$xls->compatibility_mode();
my $xlsContent= $xls->add_worksheet( "$filename" );
# 标题风格
my $titleStyle = $xls->add_format(
size => 10,
bold => 1,
border => 2,
align => 'center',
);
# 内容风格
my $rowStyle = $xls->add_format(
align => 'left',
border => 1,
);
# 设置行的宽,先查出全部有数据的一行,来做为宽度的基准
my @tmp = ();
foreach my $line ( 2 .. $#{$file} ){
foreach my $contentNu ( 0 .. $#{$file->[$line]} ){
next if $tmp[$contentNu];
$tmp[$contentNu] = $file->[$line][$contentNu];
}
}
foreach ( 0 .. $#tmp ){
$xlsContent->set_column( $_ , $_+1, 4 + length $tmp[$_]);
}
# 列
my $row = 0;
foreach my $line ( @{$file} ){
# 对风格的处理,第一行不一样
my $Style = $rowStyle;
if ($row == 0 ){
$Style = $titleStyle;
}
# 行处理
my $col = 0;
foreach my $content ( @{$line} ){
chomp $content;
$xlsContent->set_row($row, 23);
$xlsContent->write( $row, $col, decode("gbk",$content) ,$Style );
$col ++;
}
$row ++;
}
$xls->close();
}
*********将现有的excel文件导入到新的excel文件中实例********* import.pl
#!/usr/bin/perl -w
use strict;
use Spreadsheet::ParseExcel;
use Spreadsheet::WriteExcel;
use Data::Dumper;
# cobbled together from examples for the Spreadsheet::ParseExcel and
# Spreadsheet::WriteExcel modules
my $sourcename = shift @ARGV;
my $destname = shift @ARGV or die "invocation: $0 <source file> <destination file>";
my $source_excel = new Spreadsheet::ParseExcel;
my $source_book = $source_excel->Parse($sourcename)
or die "Could not open source Excel file $sourcename: $!";
my $storage_book;
foreach my $source_sheet_number (0 .. $source_book->{SheetCount}-1)
{
my $source_sheet = $source_book->{Worksheet}[$source_sheet_number];
print "--------- SHEET:", $source_sheet->{Name}, "\n";
# sanity checking on the source file: rows and columns should be sensible
next unless defined $source_sheet->{MaxRow};
next unless $source_sheet->{MinRow} <= $source_sheet->{MaxRow};
next unless defined $source_sheet->{MaxCol};
next unless $source_sheet->{MinCol} <= $source_sheet->{MaxCol};
foreach my $row_index ($source_sheet->{MinRow} .. $source_sheet->{MaxRow})
{
foreach my $col_index ($source_sheet->{MinCol} .. $source_sheet->{MaxCol})
{
my $source_cell = $source_sheet->{Cells}[$row_index][$col_index];
if ($source_cell)
{
print "( $row_index , $col_index ) =>", $source_cell->Value, "\n";
if ($source_cell->{Type} eq 'Numeric')
{
$storage_book->{$source_sheet->{Name}}->{$row_index}->{$col_index} = $source_cell->Value*2;
}
else
{
$storage_book->{$source_sheet->{Name}}->{$row_index}->{$col_index} = $source_cell->Value;
} # end of if/else
} # end of source_cell check
} # foreach col_index
} # foreach row_index
} # foreach source_sheet_number
print "Perl recognized the following data (sheet/row/column order):\n";
print Dumper $storage_book;
my $dest_book = Spreadsheet::WriteExcel->new("$destname")
or die "Could not create a new Excel file in $destname: $!";
print "\n\nSaving recognized data in $destname...";
foreach my $sheet (keys %$storage_book)
{
my $dest_sheet = $dest_book->addworksheet($sheet);
foreach my $row (keys %{$storage_book->{$sheet}})
{
foreach my $col (keys %{$storage_book->{$sheet}->{$row}})
{
$dest_sheet->write($row, $col, $storage_book->{$sheet}->{$row}->{$col});
} # foreach column
} # foreach row
} # foreach sheet
$dest_book->close();
print "done!\n";
#import.pl source.xls des.xls
|
相关推荐
描述中提到的"for linux perl, can read and write for excel file, very easy to use it"意味着这个模块在Linux操作系统下运行,并且具备读写Excel文件的能力。Perl是一种跨平台的脚本语言,因此Spreadsheet::...
要读取Excel文件中的数据,首先需要使用"Open Spreadsheet File" VI打开Excel文件,然后可以通过"Read Spreadsheet Range"或"Read Spreadsheet Column" VIs来获取指定工作表(Sheet)中的数据。这些VIs允许你指定要...
在这个"poi excel read write"项目中,我们可以看到两个主要的文件:`poireadwriteexcel`和`poi2007`,它们分别展示了如何使用Apache POI来读取和写入Excel文件,针对2003(.xls)和2007(.xlsx)两种不同的文件格式...
例如,提供`readExcel`和`writeExcel`方法,接收文件路径、工作簿索引、工作表索引等参数。 综上所述,处理xls和xlsx文件需要理解文件格式的区别,选择合适的API,并注意性能优化和错误处理。通过合理的代码设计,...
例如,`Office::ParseXLS`模块用于解析Excel文件,而`Spreadsheet::WriteExcel`模块则可以用来创建新的Excel文件或者写入数据到已有的Excel文件中。对于Word文档,`Win32::OLE`模块允许通过COM接口与Word应用程序...
Excel读写指的是程序或脚本能够从Excel文件(通常扩展名为.XLSX或.XLS)中读取数据,然后对这些数据进行处理,并将结果写回至Excel文件的过程。在编程领域,这是一项常见的任务,尤其在数据分析、报表生成以及自动化...
标题“ddroon_spreadsheet_read_write”暗示了一个关于读取和写入电子表格的项目或库,可能是用JavaScript编写的。在这个项目中,我们可能会探讨如何使用JavaScript处理电子表格数据,这在Web开发中非常常见,特别是...
在实际项目中,我们通常会封装成工具类,提供如`writeExcel()`、`readExcel()`这样的方法,方便在项目中重复使用。 总结来说,Java操作Excel主要依赖于Apache POI库,通过它可以方便地创建、修改和读取Excel文件。...
这是一个读写excel文件的库,不需要微软的office和.net框架,支持xsl,xslx,xslm,支持64位平台和Unicode。 经测试,已经XXX,c++创建xls 2003版的excel文件,文件的第一行会生成试用版的信息。如果创建xlsx 2007-...
如果处理大量数据,`spreadsheet`类或`readtable`/`writetable`函数可能更有效率,特别是对于较新版本的Excel文件。 在实际使用中,需要注意以下几点: - 确保MATLAB安装了相应的工具箱,如Database Toolbox,才能...
例如,使用Write To Spreadsheet File和Read From Spreadsheet File节点创建和读取电子表格文件,不仅能够将数值数据与文本文件格式之间进行转换,还能实现数据的导入和导出。这些技能对于数据科学家、软件工程师...
pandas适合数据分析和快速读写,openpyxl适合处理.xlsx格式并有高级功能,而xlrd和xlwt适用于旧版Excel文件。在处理大量数据或需要高效写入时,XlsxWriter是一个好选择。对于需要直接控制Excel应用或执行宏的场景,...
虽然这种方法可能不如使用特定的Excel库(如pandas或openpyxl)方便,但它提供了更大的灵活性和对数据结构的控制。在某些场景下,尤其是需要对数据进行深度定制或与XML相关的系统集成时,基于XML的读写方法会非常...
最后,当涉及到大量数据或频繁的读写操作时,推荐使用MATLAB的Datastore功能,它可以创建一个指向Excel文件的持久数据源,允许高效地批量读取和写入。 总结来说,MATLAB通过`xlsread`、`xlsxread`、`readtable`等...
本文将深入探讨CSpreadSheet这个经典第三方库,以及如何利用它来读写Excel和文本分隔的电子表格。 CSpreadSheet是专为VC++(Visual C++)开发的一个类库,它允许开发者在C++程序中方便地操作Excel文件,无需直接...
随着业务需求的增长和技术的发展,越来越多的企业开始寻求使用编程语言来实现对Excel文件的自动化操作。对于Java开发者而言,**Jakarta POI** API 成为了一个非常重要的工具包,它提供了丰富的API来读写Microsoft ...
4. 实例分析:Excel Report.llb 在提供的压缩文件"Excel Report.llb"中,很可能是包含了一系列LabVIEW VI,用于演示或实际应用这些自动化报告生成的技术。LLB(Library)是LabVIEW的库文件格式,里面可能包含了多...
在Excel处理方面,我们主要使用HSSF(Horizontally Stored Spreadsheet Format)来处理老版本的.XLS文件,以及XSSF(XML Spreadsheet Format)来处理新版本的.XLSX文件。这两个接口提供了创建、读取和修改Excel文档...
`excelController.java`作为Web接口,`ObjectExcelRead.java`和`ObjectExcelView.java`负责文件的读写操作。这样的设计使得我们的代码结构清晰,易于扩展和维护。在实际项目中,你可能还需要考虑错误处理、性能优化...
- 除了Excel,NPOI还提供了对Word文档(HWPF)和PowerPoint(XWPF)的支持,尽管不如Excel功能强大。 6. **性能和限制** - 虽然NPOI性能优秀,但处理大量数据时可能消耗较大内存。为优化性能,可以考虑分批读写,...