Cambios recientes

2008-09-24

Últimos archivo liberados

xlsapi (0.1.1)2008-09-24 19:12

Wiki Guide

Sidebar

↓みたいな感じでExcelファイルを生成できます。

  1. import static org.torikiri.xlsapi.XlsAPI.*;
  2. import java.io.IOException;
  3. public class Sample {
  4. public static void main(String[] args) throws IOException {
  5. xls(
  6. sheet(
  7. row(
  8. cell("hoge1"),
  9. cell("hoge2")
  10. )
  11. )
  12. ).write("./hoge.xls");
  13. }
  14. }