Télécharger la liste

Description du projet

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");
    }
}

Système requise

System requirement is not defined
xlsapi
0.1.1

Livrée : 2008-09-24 19:12
xlsapi 0.1.1 (1 files Cacher)

Notes de release

バグ対応版

Changelog

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