无法在未定义的值上调用方法工作表 [英] Can't call method Worksheet on an undefined value

查看:82
本文介绍了无法在未定义的值上调用方法工作表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

use strict;
use warnings;

use Spreadsheet::ParseExcel;
use Spreadsheet::ParseExcel::SaveParser;

my $excel_file_name = $ARGV[0];
my $parser          = Spreadsheet::ParseExcel::SaveParser->new();
my $workbook_orig   = $parser->Parse($excel_file_name);

# We will edit column 7 of the first worksheet.
my $worksheet = $workbook_orig->worksheet(0);
my $EDIT_COL = 6;

my ($row_min, $row_max) = $worksheet->row_range();
for my $r ($row_min .. $row_max){
    my $cell = $worksheet->get_cell($r, $EDIT_COL);
    unless (defined $cell){
        next; # Modify as needed to handle blank cells.
    }
    my $val = $cell->value . '_append_text';
    $worksheet->AddCell( $r, $EDIT_COL, $val, $cell->{FormatNo} );
}

# You can save the modifications to the same file, but when
# you are learning, it's safer to write to a different file.
$excel_file_name =~ s/\.xls$/_new.xls/;
$workbook_orig->SaveAs($excel_file_name);

我的上面的实现在下面一行给我错误无法在未定义的值上调用方法工作表".我正在尝试读取excel文件并解析该文件,以便以后可以向其中添加其他内容.我正在使用ParseExcel模块执行此操作,如果有任何更好的方法可以解决此问题,或者有任何关于为什么收到错误的指导,将非常感谢您的帮助.谢谢.

My implementation above gives me the error "Can't call method Worksheet on an undefined value" on the line below. I am trying to read the excel file and parse the file so that I may add additonal content to it later. I am doing this using the ParseExcel module, if there are any better ways to go about this or any guidance on why I am receiving the error that I am, any help would be greatly appreciated. Thanks.

my $worksheet = $workbook_orig->worksheet(0);

推荐答案

Parse会在错误时返回undef,而您没有对此进行检查.试试:

Parse returns undef on error and you are not checking for that. Try:

my $workbook_orig   = $parser->Parse($excel_file_name);
unless ($workbook_orig) {
    die "Got error " . $parser->error() . " parsing spreadsheet.";
}

查看出现了什么错误,以便您决定如何解决.

to see what error it is getting so you can decide how to fix it.

这篇关于无法在未定义的值上调用方法工作表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆