- 论坛徽章:
- 0
|
初学perl..学习了一下基本语法..看到了可以操作excel表格..很激动..于是..
- #!usr/bin/perl
- use strict;
- use Win32::OLE qw(in with);
- use Win32::OLE::Const 'Microsoft Excel';
- $Win32::OLE::Warn = 3; # die on errors...
- my $excel_file = "excel_test.xls";
- my $Excel = Win32::OLE->GetActiveObject('Excel.Application') || Win32::OLE->new('Excel.Application', 'Quit');
- if (!-e $excel_file)
- {
- print STDOUT "excel file not exist\n";
- }
- my $excel_book = $Excel->Workbooks->Open($excel_file);
- my $excel_sheet = $excel_book->WorkSheets(1);
- my $result_value = $excel_sheet->Cells(1, 'A')->{Value};
- print STDOUT $result_value;
复制代码 问题就在这个 $excel_file...
我这个xls文件和我的perl文件放在同一个目录下的,这样写也不行么? 好像会提示打不开或者error 0x800.....
如果换成绝对路径就可以了,比如 "E:\\perl_test\\excel_test.xls";
但这样方便么? 在一个项目中如果用到了这个东东..难道还要考虑这个项目放在哪个分区之类的么?/./// |
|