- 论坛徽章:
- 6
|
偶试试{:3_193:}- #!perl
- package Xls;
- use strict;
- use Win32::OLE;
- sub new {
- my ($class) = @_;
- my $self = +{};
- bless $self, $class;
- return $self;
- }
- sub open_excel {
- my $self = shift;
- my $xl_doc = shift;
- my $excel = Win32::OLE->new('Excel.Application') or
- die "Excel application is not installed:\n";
- my $workbooks;
-
- # make excel visible
- $excel->{Visible} = 1;
- $workbooks = $excel->Workbooks->Open($xl_doc);
- return $workbooks;
- }
- sub get_worksheet {
- my ($self, $workbooks, $num) = @_;
- my $sheet = $workbooks->Worksheets($num);
- return $sheet;
- }
- sub get_cell_value {
- my ($self, $sheet, $row, $col) = @_;
- my $cell_obj = $sheet->Cells($row, $col);
- my $value = q{};
-
- if ($cell_obj){
- $value = $sheet->Cells($row, $col)->{Value};
- }
- $value ||= q{};
-
- return $value;
- }
- sub set_cell_value {
- my ($self, $sheet, $row, $col, $value) = @_;
- my $cell_obj = $sheet->Cells($row, $col);
- $value ||= q{};
-
- if ($cell_obj){
- $sheet->Cells($row, $col)->{Value} = $value;
- }
- }
- 1;
- package main;
- use strict;
- my $xls_name = '/full/path/to/your/excel.xls';
- # parse the first worksheet
- my $worksheet_number = 1;
- # data to write
- my %work = (
- name =>'jack',
- project=>'venus',
- pid =>'R0629',
- add =>'shanghai',
- );
- my $pm = Xls->new();
- my $workbooks = $pm->open_excel($xls_name);
- my $worksheet = $pm->get_worksheet($workbooks, $worksheet_number);
- # frist cell
- my $col = 1;
- my $row = 1;
- # get the cell in column one that has no value within
- while (1) {
- my $cell_value = $pm->get_cell_value($worksheet, $row, $col);
- last if !$cell_value;
- $row++;
- }
- # write data in ordered sequences
- for my $key ('name', 'project', 'pid', 'add'){
- $pm->set_cell_value($worksheet, $row, $col, $work{$key});
- $col++;
- }
- # close
- $workbooks->Close
- __END__
复制代码 |
|