import java.io.FileOutputStream;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Color;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class PoiSample {
public static void main(String[] args) {
//Excelデータ生成
Workbook wb = new XSSFWorkbook(); //ブックの生成
Sheet sh = wb.createSheet(); //シートの生成
Row row = sh.createRow(0); //行の生成
Cell cell = row.createCell(0); //セルの生成
cell.setCellValue("サンプル"); //文字のセット
//フォントオブジェクト生成
Font font = wb.createFont();
font.setBold(true); //太字
font.setItalic(true); //斜体
font.setStrikeout(true); //打消し線
font.setUnderline(Font.U_DOUBLE); //下線(二重線)
font.setColor(IndexedColors.RED.index); //文字色(赤)
font.setFontName("MS Pゴシック"); //フォント(MS Pゴシック)
font.setFontHeightInPoints((short)18); //フォントサイズ18pt
//セルに生成したフォントを設定する
CellStyle cs = wb.createCellStyle();
cs.setFont(font);
cell.setCellStyle(cs);
//Excelファイル準備
FileOutputStream out = null;
String path = "D:¥¥sample.xlsx";
try {
//Excel出力
out = new FileOutputStream(path);
wb.write(out);
} catch (Exception ex) {
ex.printStackTrace();
} finally {
try {
wb.close();
out.close();
} catch (Exception ex2) {
ex2.printStackTrace();
}
}
}
}