import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.*;
workbook = WorkbookFactory.create(new FileInputStream("test1.xlsx"))
// セルを右寄せに設定
sheet = workbook.getSheetAt(0)
sheet.setColumnWidth(0, 20 * 256 /* 1/256th of a character width */)
sheet.getRow(0).getCell(0).getCellStyle().setAlignment(
CellStyle.ALIGN_RIGHT
)
workbook.write(new FileOutputStream("test21.xlsx"))
サンプルExcelブック(test1.xlsx)
出力Excel(test21.xlsx)
動作環境
groovy 1.7.0, JDK6 Update18, Apache POI 3.6
0 件のコメント:
コメントを投稿