import org.simpleods.*
// odsファイル作成
OdsFile of = new OdsFile("test2.ods")
// テーブル追加
tableName = ""
"シート1".each {
tableName += "&#" + Character.codePointAt(it, 0) + ";"
}
of.addTable(tableName)
tn = of.getTableNumber(tableName)
//オレンジ色背景スタイル
ts = new TableStyle(TableStyle.STYLE_TABLECELL, "bg_orange")
ts.setBackgroundColor(Util.COLOR_Orange)
// セル設定
of.setCell(tn, "A1", "ABC", ts)
of.setCell(tn, "A2", "日本語", ts)
of.setCell(tn, "B1", 123, ts)
of.save()
出力ファイルイメージ
動作環境
groovy 1.7.2, JDK6 Update20, SimpleODS 0.4.4
関連項目
SimpleODSのホームページ
http://simpleods.sourceforge.net/
0 件のコメント:
コメントを投稿