↓みたいな感じでExcelファイルを生成できます。
import static org.torikiri.xlsapi.XlsAPI.*; import java.io.IOException; public class Sample { public static void main(String[] args) throws IOException { xls( sheet( row( cell("hoge1"), cell("hoge2") ) ) ).write("./hoge.xls"); } }