import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.*;
workbook = WorkbookFactory.create(new FileInputStream("test1.xlsx"))
// セルの文字列にイタリックを設定
font = workbook.createFont();
font.setFontHeightInPoints((short)10)
font.setFontName("MS ゴシック")
font.setItalic(true)
sheet = workbook.getSheetAt(0)
cs = workbook.createCellStyle()
cs.setFont(font)
sheet.getRow(1).getCell(1).setCellStyle(cs)
workbook.write(new FileOutputStream("test28.xlsx"))
サンプルExcelブック(test1.xlsx)
出力Excel(test28.xlsx)
動作環境
groovy 1.7.0, JDK6 Update18, Apache POI 3.6
0 件のコメント:
コメントを投稿