groovy : poi XLSX2CSV

下载 poi-bin-3.10-FINAL-20140208.zip ,解压后
copy *.jar   \groovy\lib\
copy \poi-3.10-FINAL\ooxml-lib\*.jar  \groovy\lib\

jar tvf poi-ooxml-3.10-FINAL-20140208.jar | findstr OPCPackage
可见 org/apache/poi/openxml4j/opc/OPCPackage.class

jar tvf poi-examples-3.10-FINAL-20140208.jar | findstr XLSX2CSV
可见 org/apache/poi/xssf/eventusermodel/XLSX2CSV.class

示例代码: xlsx2csv.groovy

//package test;
import org.apache.poi.openxml4j.opc.*;
import org.apache.poi.xssf.eventusermodel.XLSX2CSV;

if (args.length < 1) {
    System.err.println("Use:");
    System.err.println("  XLSX2CSV <xlsx file> [min columns]");
    return;
}
def file1 = args[0]
File xlsxFile = new File(file1);
if (!xlsxFile.exists()) {
    System.err.println("Not found or not a file: " + xlsxFile.getPath());
    return;
}

def file2 = file1.replace('.xlsx','.csv')
File csvFile = new File(file2);
if ( csvFile.exists()) {
    System.err.println(file2+": csvFile is exists. " );
    return;
}

int minColumns = -1;
if (args.length >= 2)
    minColumns = Integer.parseInt(args[1]);

// System.out redirect
def out = new PrintStream(file2);
System.setOut(out);

// The package open is instantaneous, as it should be.
OPCPackage p = OPCPackage.open(xlsxFile.getPath(), PackageAccess.READ);
XLSX2CSV xlsx2csv = new XLSX2CSV(p, out, minColumns);
xlsx2csv.process();
out.close();

运行 groovy xlsx2csv  test.xlsx


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值