我正在尝试将 .xlsx 文件转换为 .xml 文件。.xlsx 文件的第一行(标题)将成为 xml 文件的标签。
我在下面编写了运行良好的代码-
open(XML, ">temp.csv") or die "not able to open $!";
use Spreadsheet::XLSX;
my $excel = Spreadsheet::XLSX -> new ('test.xlsx');
foreach my $sheet (@{$excel -> {Worksheet}}) {
$sheet -> {MaxRow} ||= $sheet -> {MinRow};
foreach my $row ($sheet -> {MinRow} .. $sheet -> {MaxRow}) {
$sheet -> {MaxCol} ||= $sheet -> {MinCol};
foreach my $col ($sheet -> {MinCol} .. $sheet -> {MaxCol}) {
my $cell = $sheet -> {Cells} [$row] [$col];
if ($cell) {
print XML $cell -> {Val};
}
unless($col == $sheet -> {MaxCol}) {print XML ",";}
}
unless( $row == $sheet -> {MaxRow}){print XML "\n";}
}
}
close(XML);
use XML::CSV;
my $csv_obj = XML::CSV->new();
$csv_obj->parse_doc("temp.csv", {headings => 1});
$csv_obj->print_xml("out.xml");
任何人都可以提出更好的代码(模块),因为我必须处理大型 .xlsx 文件。
提前致谢。
男人