Download List

项目描述

Apache POIを利用した、より使いやすいExcel操作API

import static org.torikiri.xlsapi.XlsAPI.*;

import java.io.IOException;

public class Sample {

    public static void main(String[] args) throws IOException {
        xls(
            sheet("new sheet",
                row(
                    cell("This is cell value")
                )
            )
        ).write("workbook.xls");
    }
}

系统要求

System requirement is not defined
xlsapi
0.1.1

发布: 2008-09-24 19:12
xlsapi 0.1.1 (1 files 隐藏)

发布版本通知

バグ対応版

变更日志

シートに行が追加できないバグ対応
HSSFWorkBookオブジェクトを取得できるように変更