import java.io.FileOutputStream;
import org.apache.poi.ss.usermodel.Cell;
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("余白サンプル"); //文字のセット
//余白を設定する
sh.setMargin(Sheet.TopMargin, 0.5); //上マージン(0.5インチ(Excel上1.3))
sh.setMargin(Sheet.BottomMargin, 1); //下マージン(1.0インチ(Excel上2.5))
sh.setMargin(Sheet.LeftMargin, 1.5); //左マージン(1.5インチ(Excel上3.8))
sh.setMargin(Sheet.RightMargin, 2.0); //右マージン(2.0インチ(Excel上5.1))
sh.setMargin(Sheet.HeaderMargin, 0.8); //ヘッダーマージン(0.8インチ(Excel上2.0))
sh.setMargin(Sheet.FooterMargin, 1.2); //フッターマージン(1.2インチ(Excel上3.0))
//Excelファイル準備
FileOutputStream out = null;
String path = "C:¥¥temp¥¥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();
}
}
}
}