Perl で Excel の読み書き

Perl で Excel ファイルを直接やり取りする方法。
便利なものがあるもんだ。

●インストールメモ
Spreadsheet::WriteExcel
Spreadsheet::ParseExcel

・参考先
http://homepage3.nifty.com/hippo2000/perltips/Spreadsheet/WriteExcel.htm
http://homepage3.nifty.com/hippo2000/perltips/Spreadsheet/ParseExcel.htm
http://www.drk7.jp/MT/archives/000565.html

●Spreadsheet::WriteExcel
# wget http://search.cpan.org/CPAN/authors/id/D/DC/DCONWAY/Parse-RecDescent-1.94.tar.gz
# tar zxvf Parse-RecDescent-1.94.tar.gz
# cd Parse-RecDescent-1.94
# perl ./Makefile.PL
# make
# make test
# make install
# cd ..

# wget http://search.cpan.org/CPAN/authors/id/J/JM/JMCNAMARA/Spreadsheet-WriteExcel-2.17.tar.gz
# tar zxvf Spreadsheet-WriteExcel-2.17.tar.gz
# cd Spreadsheet-WriteExcel-2.17
# perl ./Makefile.PL
# make
# make test
# make install

●Spreadsheet::ParseExcel
# wget http://search.cpan.org/CPAN/authors/id/D/DS/DSKOLL/IO-stringy-2.110.tar.gz
# tar zxvf IO-stringy-2.110.tar.gz
# cd IO-stringy-2.110
# perl ./Makefile.PL
# make
# make test
# make install
# cd ..

# wget http://search.cpan.org/CPAN/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-0.14.tar.gz
# tar zxvf OLE-Storage_Lite-0.14.tar.gz
# cd OLE-Storage_Lite-0.14
# perl ./Makefile.PL
# make
# make test
# make install
# cd ..

# wget http://search.cpan.org/CPAN/authors/id/S/SZ/SZABGAB/Spreadsheet-ParseExcel-0.27.tar.gz
# tar zxvf Spreadsheet-ParseExcel-0.27.tar.gz
# cd Spreadsheet-ParseExcel-0.27
# perl ./Makefile.PL
# make test
# make install

●Unicode::String
# wget http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Unicode-String-2.09.tar.gz
# tar zxvf Unicode-String-2.09.tar.gz
# cd Unicode-String-2.09
# perl ./Makefile.PL
# make
# make test
# make install

●Jcode
# wget http://search.cpan.org/CPAN/authors/id/D/DA/DANKOGAI/Jcode-2.06.tar.gz
# tar zxvf Jcode-2.06.tar.gz
# cd Jcode-2.06
# perl ./Makefile.PL
# make
# make test
# make install

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

*

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)