はじめに
事前に以下のライブラリを用意します。
- Apache POI
- https://poi.apache.org/download.html
- ※"poi-bin-3.16-20170419.tar.gz"のリンクからダウンロード
今回のサンプルは以下のjarがあれば動作します。
- poi-3.16.jar
- poi-ooxml-3.16.jar
- poi-ooxml-schemas-3.16.jar
- xmlbeans-2.6.0.jar
- commons-collections4-4.1.jar
実装例
今回のサンプルでは以下の機能を確認します。
- 複数のシートを作成する
- ウィンドウ枠の固定を設定する
- オートフィルタを設定する
- 列幅を自動調整する
- セルに文字列を表示する
- セルに改行入りの文字列を表示する
- セルに整数を表示する
- セルに小数を表示する
- セルに円を表示する
- セルにパーセントを表示する
- セルに数式を設定する
- 不要となったシートを削除する
動作確認しやすいようにmainメソッドで実行できるようにしてあります。
XLSXWriteTest.java
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Date;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.usermodel.BorderStyle;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.CellType;
import org.apache.poi.ss.usermodel.DataFormat;
import org.apache.poi.ss.usermodel.FillPatternType;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
/**
*
* @author tool-taro.com
*/
public class XLSXWriteTest {
public static void main(String[] args) throws FileNotFoundException, IOException {
String outputFilePath = "out.xlsx";
Workbook book = null;
FileOutputStream fout = null;
try {
book = new SXSSFWorkbook();
Font font = book.createFont();
font.setFontName("MS ゴシック");
font.setFontHeightInPoints((short) 9);
DataFormat format = book.createDataFormat();
//ヘッダ文字列用のスタイル
CellStyle style_header = book.createCellStyle();
style_header.setBorderBottom(BorderStyle.THIN);
XLSXWriteTest.setBorder(style_header, BorderStyle.THIN);
style_header.setFillForegroundColor(HSSFColor.HSSFColorPredefined.LIGHT_CORNFLOWER_BLUE.getIndex());
style_header.setFillPattern(FillPatternType.SOLID_FOREGROUND);
style_header.setVerticalAlignment(VerticalAlignment.TOP);
style_header.setFont(font);
//文字列用のスタイル
CellStyle style_string = book.createCellStyle();
XLSXWriteTest.setBorder(style_string, BorderStyle.THIN);
style_string.setVerticalAlignment(VerticalAlignment.TOP);
style_string.setFont(font);
//改行が入った文字列用のスタイル
CellStyle style_string_wrap = book.createCellStyle();
XLSXWriteTest.setBorder(style_string_wrap, BorderStyle.THIN);
style_string_wrap.setVerticalAlignment(VerticalAlignment.TOP);
style_string_wrap.setWrapText(true);
style_string_wrap.setFont(font);
//整数用のスタイル
CellStyle style_int = book.createCellStyle();
XLSXWriteTest.setBorder(style_int, BorderStyle.THIN);
style_int.setDataFormat(format.getFormat("#,##0;-#,##0"));
style_int.setVerticalAlignment(VerticalAlignment.TOP);
style_int.setFont(font);
//小数用のスタイル
CellStyle style_double = book.createCellStyle();
XLSXWriteTest.setBorder(style_double, BorderStyle.THIN);
style_double.setDataFormat(format.getFormat("#,##0.0;-#,##0.0"));
style_double.setVerticalAlignment(VerticalAlignment.TOP);
style_double.setFont(font);
//円表示用のスタイル
CellStyle style_yen = book.createCellStyle();
XLSXWriteTest.setBorder(style_yen, BorderStyle.THIN);
style_yen.setDataFormat(format.getFormat("\"\\\"#,##0;\"\\\"-#,##0"));
style_yen.setVerticalAlignment(VerticalAlignment.TOP);
style_yen.setFont(font);
//パーセント表示用のスタイル
CellStyle style_percent = book.createCellStyle();
XLSXWriteTest.setBorder(style_percent, BorderStyle.THIN);
style_percent.setDataFormat(format.getFormat("0.0%"));
style_percent.setVerticalAlignment(VerticalAlignment.TOP);
style_percent.setFont(font);
//日時表示用のスタイル
CellStyle style_datetime = book.createCellStyle();
XLSXWriteTest.setBorder(style_datetime, BorderStyle.THIN);
style_datetime.setDataFormat(format.getFormat("yyyy/mm/dd hh:mm:ss"));
style_datetime.setVerticalAlignment(VerticalAlignment.TOP);
style_datetime.setFont(font);
Row row;
int rowNumber;
Cell cell;
int colNumber;
//シートの作成(3シート作ってみる)
Sheet sheet;
for (int i = 0; i < 3; i++) {
sheet = book.createSheet();
if (sheet instanceof SXSSFSheet) {
((SXSSFSheet) sheet).trackAllColumnsForAutoSizing();
}
//シート名称の設定
book.setSheetName(i, "シート" + (i + 1));
//ヘッダ行の作成
rowNumber = 0;
colNumber = 0;
row = sheet.createRow(rowNumber);
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("No.");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("文字列");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("改行の入った文字列");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("整数");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("小数");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("円");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("パーセント");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("日時");
cell = row.createCell(colNumber);
cell.setCellStyle(style_header);
cell.setCellType(CellType.STRING);
cell.setCellValue("円(8%の税込)");
//ウィンドウ枠の固定
sheet.createFreezePane(1, 1);
//ヘッダ行にオートフィルタの設定
sheet.setAutoFilter(new CellRangeAddress(0, 0, 0, colNumber));
//列幅の自動調整
for (int j = 0; j <= colNumber; j++) {
sheet.autoSizeColumn(j, true);
}
//データ行の生成(10行作ってみる)
for (int j = 0; j < 10; j++) {
rowNumber++;
colNumber = 0;
row = sheet.createRow(rowNumber);
cell = row.createCell(colNumber++);
cell.setCellStyle(style_int);
cell.setCellType(CellType.NUMERIC);
cell.setCellValue(j + 1);
cell = row.createCell(colNumber++);
cell.setCellStyle(style_string);
cell.setCellType(CellType.STRING);
cell.setCellValue("これは" + (j + 1) + "行目のデータです。");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_string_wrap);
cell.setCellType(CellType.STRING);
cell.setCellValue("これは\n" + (j + 1) + "行目の\nデータです。");
cell = row.createCell(colNumber++);
cell.setCellStyle(style_int);
cell.setCellType(CellType.STRING);
cell.setCellValue((j + 1) * 1000);
cell = row.createCell(colNumber++);
cell.setCellStyle(style_double);
cell.setCellType(CellType.STRING);
cell.setCellValue((double) (j + 1) * 1000);
cell = row.createCell(colNumber++);
cell.setCellStyle(style_yen);
cell.setCellType(CellType.STRING);
cell.setCellValue((j + 1) * 1000);
cell = row.createCell(colNumber++);
cell.setCellStyle(style_percent);
cell.setCellType(CellType.STRING);
cell.setCellValue((double) (j + 1));
cell = row.createCell(colNumber++);
cell.setCellStyle(style_datetime);
cell.setCellType(CellType.STRING);
cell.setCellValue(new Date());
cell = row.createCell(colNumber);
cell.setCellStyle(style_yen);
cell.setCellType(CellType.FORMULA);
cell.setCellFormula("ROUND(" + XLSXWriteTest.getExcelColumnString(colNumber - 3) + (rowNumber + 1) + "*1.08, 0)");
//列幅の自動調整
for (int k = 0; k <= colNumber; k++) {
sheet.autoSizeColumn(k, true);
}
}
}
//シート3を消してみる
book.removeSheetAt(2);
//ファイル出力
fout = new FileOutputStream(outputFilePath);
book.write(fout);
}
finally {
if (fout != null) {
try {
fout.close();
}
catch (IOException e) {
}
}
if (book != null) {
try {
/*
SXSSFWorkbookはメモリ空間を節約する代わりにテンポラリファイルを大量に生成するため、
不要になった段階でdisposeしてテンポラリファイルを削除する必要がある
*/
((SXSSFWorkbook) book).dispose();
}
catch (Exception e) {
}
}
}
}
private static void setBorder(CellStyle style, BorderStyle border) {
style.setBorderBottom(border);
style.setBorderTop(border);
style.setBorderLeft(border);
style.setBorderRight(border);
}
private final static String[] LIST_ALPHA = {
"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"
};
private static String getExcelColumnString(int column) {
String result = "";
if (column >= 0) {
if (column / XLSXWriteTest.LIST_ALPHA.length > 0) {
result += getExcelColumnString(column / XLSXWriteTest.LIST_ALPHA.length - 1);
}
result += XLSXWriteTest.LIST_ALPHA[column % XLSXWriteTest.LIST_ALPHA.length];
}
return result;
}
}
動作確認
$ javac XLSXWriteTest.java
$ java XLSXWriteTest
作成されたファイルはこんな感じになりました。
列幅の自動調整は少し甘いのかもしれません。
環境
-
開発
- Windows 10 Pro
- JDK 1.8.0_131
- NetBeans IDE 8.2
-
動作検証
- CentOS Linux release 7.3
- JDK 1.8.0_131
上記の実装をベースにWebツールも公開しています。
Webサイトのクロール|Web便利ツール@ツールタロウ
形態素解析・集計|Web便利ツール@ツールタロウ